aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/loops.lua
blob: 8624d492facad8bd189a352e28ed7be3ffb4e811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
for x = 1, 10 do
	print("yeah")
end
for x = 1, #something do
	print("yeah")
end
for y = 100, 60, -3 do
	print("count down", y)
end
for a = 1, 10 do
	print("okay")
end
for a = 1, 10 do
	for b = 2, 43 do
		print(a, b)
	end
end
for i in iter do
	for j in yeah do
		local x = 343 + i + j
		print(i, j)
	end
end
local _list_0 = something
for _index_0 = 1, #_list_0 do
	local x = _list_0[_index_0]
	print(x)
end
for k, v in pairs(hello) do
	print(k, v)
end
for x in y, z do
	print(x)
end
for x in y, z, k do
	print(x)
end
local _list_1 = modules
for _index_0 = 1, #_list_1 do
	local name, members = _list_1[_index_0]
	print(name, member)
end
local x
x = function()
	for x in y do
		local _ = y
	end
end
local hello = {
	1,
	2,
	3,
	4,
	5
}
do
	local _accum_0 = { }
	local _len_0 = 1
	for _index_0 = 1, #hello do
		local y = hello[_index_0]
		if y % 2 == 0 then
			_accum_0[_len_0] = y
		end
		_len_0 = _len_0 + 1
	end
	x = _accum_0
end
x = function()
	for _index_0 = 1, #hello do
		local x = hello[_index_0]
		local _ = y
	end
end
local t
do
	local _accum_0 = { }
	local _len_0 = 1
	for i = 10, 20 do
		_accum_0[_len_0] = i * 2
		_len_0 = _len_0 + 1
	end
	t = _accum_0
end
local hmm = 0
local y
do
	local _accum_0 = { }
	local _len_0 = 1
	for j = 3, 30, 8 do
		hmm = hmm + 1
		_accum_0[_len_0] = j * hmm
		_len_0 = _len_0 + 1
	end
	y = _accum_0
end
local _
_ = function()
	for k = 10, 40 do
		_ = "okay"
	end
end
_ = function()
	local _accum_0 = { }
	local _len_0 = 1
	for k = 10, 40 do
		_accum_0[_len_0] = "okay"
		_len_0 = _len_0 + 1
	end
	return _accum_0
end
while true do
	print("name")
end
while 5 + 5 do
	print("okay world")
	working(man)
end
while also do
	i(work(too))
	_ = "okay"
end
local i = 0
do
	local _accum_0 = { }
	local _len_0 = 1
	while i < 10 do
		i = i + 1
		_accum_0[_len_0] = i
		_len_0 = _len_0 + 1
	end
	x = _accum_0
end
do
	local _accum_0 = { }
	local _len_0 = 1
	local _list_2 = 3
	for _index_0 = 1, #_list_2 do
		local thing = _list_2[_index_0]
		y = "hello"
		break
		_len_0 = _len_0 + 1
	end
	x = _accum_0
end
do
	local _accum_0 = { }
	local _len_0 = 1
	for x = 1, 2 do
		y = "hello"
		_accum_0[_len_0] = y
		_len_0 = _len_0 + 1
	end
	x = _accum_0
end
while true do
	if false then
		goto _continue_0
	end
	print("yes")
	if true then
		break
	end
	print("no")
	::_continue_0::
end
for i = 1, 10 do
	while true do
		if not true then
			goto _continue_1
		end
		break
		::_continue_1::
	end
end
local a = 1
repeat
	a = a + 1
	if a == 5 then
		goto _continue_2
	end
	if a == 6 then
		break
	end
	print(a)
	::_continue_2::
until a == 10
x = 0
repeat
	x = x + 1
	y = x
	if x < 5 then
		goto _continue_3
	end
	print(y)
	::_continue_3::
until y == 10
a = 3
while not (a == 0) do
	a = a - 1
end
local done = false
while not done do
	done = true
end
repeat
	print("hello")
until true
while not done do
	x = 10
	repeat
		x = x - 1
	until x == 0
end
while not cond do
	print("okay")
end
for x = 1, 10 do
	if x > 3 and x < 7 then
		goto _continue_4
	end
	print(x)
	::_continue_4::
end
local list
do
	local _accum_0 = { }
	local _len_0 = 1
	for x = 1, 10 do
		if x > 3 and x < 7 then
			goto _continue_5
		end
		_accum_0[_len_0] = x
		_len_0 = _len_0 + 1
		::_continue_5::
	end
	list = _accum_0
end
local _list_2 = {
	1,
	2,
	3,
	4,
	5,
	6
}
for _index_0 = 1, #_list_2 do
	local a = _list_2[_index_0]
	if a == 1 then
		goto _continue_6
	end
	if a == 3 then
		goto _continue_6
	end
	print(a)
	::_continue_6::
end
for x = 1, 10 do
	if x % 2 == 0 then
		goto _continue_7
	end
	for y = 2, 12 do
		if y % 3 == 0 then
			goto _continue_8
		end
		::_continue_8::
	end
	::_continue_7::
end
while true do
	if false then
		goto _continue_9
	end
	break
	::_continue_9::
end
while true do
	if false then
		goto _continue_10
	end
	do
		return 22
	end
	::_continue_10::
end
do
	local xxx = {
		1,
		2,
		3,
		4
	}
	for _index_0 = 1, #xxx do
		local thing = xxx[_index_0]
		print(thing)
	end
end
do
	for i = 1, 10 do
		repeat
			local _with_0 = tb
			if _with_0 ~= nil then
				_with_0.a = 1
				if _with_0.b then
					goto _continue_12
				end
				do
					if _with_0.c then
						break
					end
				end
			end
			::_continue_12::
		until true
		if 123 == x then
			break
		else
			goto _continue_11
		end
		if y then
			goto _continue_11
		else
			break
		end
		do
			do
				do
					print(i)
					goto _continue_11
				end
			end
		end
		print("abc")
		::_continue_11::
	end
end
do
	repeat
		local byte = stream:read_one()
		if byte then
			if byte == 0 then
				goto _continue_13
			end
			print(byte)
		else
			break
		end
		::_continue_13::
	until false
end
do
	local func
	repeat
		local success, result = xpcall(func, function(err)
			return print(err)
		end, 1, 2, 3)
		if success then
			print(result)
		else
			break
		end
	until false
end
do
	repeat
		x = func('a', b)
		if not x then
			print("false expected")
		else
			break
		end
	until false
end