aboutsummaryrefslogtreecommitdiff
path: root/spec/inputs/whitespace.moon
diff options
context:
space:
mode:
Diffstat (limited to 'spec/inputs/whitespace.moon')
-rw-r--r--spec/inputs/whitespace.moon42
1 files changed, 21 insertions, 21 deletions
diff --git a/spec/inputs/whitespace.moon b/spec/inputs/whitespace.moon
index 06ce4eb..329280f 100644
--- a/spec/inputs/whitespace.moon
+++ b/spec/inputs/whitespace.moon
@@ -100,41 +100,41 @@ c(one, two,
100-- 100--
101 101
102v = -> 102v = ->
103 a, -- v1 103 a, \-- v1
104 b, -- v2 104 b, \-- v2
105 c -- v3 105 c -- v3
106 106
107v1, v2, 107v1, v2, \
108 v3 = -> 108 v3 = ->
109 a; -- end of function for v1 109 a; \-- end of function for v1
110 b, -- v2 110 b, \-- v2
111 c -- v3 111 c -- v3
112 112
113a, b, 113a, b, \
114 c, d, 114 c, d, \
115e, f = 1, 115e, f = 1, \
116 f2 116 f2
117 :abc; -- arg2 117 :abc; \-- arg2
118 3, 118 3, \
119 4, 119 4, \
120 f5 abc; -- arg5 120 f5 abc; \-- arg5
121 6 121 6
122 122
123for a, -- destruct 1 123for a, \-- destruct 1
124 b, -- destruct 2 124 b, \-- destruct 2
125 --[[destruct 3]] c 125 --[[destruct 3]] c \
126 in pairs tb 126 in pairs tb
127 print a, 127 print a, \
128 b, 128 b, \
129 c 129 c
130 130
131for i = 1, -- initial 131for i = 1, \-- initial
132 10, -- stop 132 10, \-- stop
133 -1 -- step 133 -1 -- step
134 print i 134 print i
135 135
136local a, 136local a,\
137 b, 137 b,\
138 c 138 c
139 139
140nil 140nil