aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/5.1/loops.lua
blob: 57b19be04cbe9e7d8532c0ea5582f39d688a6a9e (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
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
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
	local _continue_0 = false
	repeat
		if false then
			_continue_0 = true
			break
		end
		print("yes")
		if true then
			break
		end
		print("no")
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
end
for i = 1, 10 do
	while true do
		local _continue_0 = false
		repeat
			do
				if not true then
					_continue_0 = true
					break
				end
				break
			end
			_continue_0 = true
		until true
		if not _continue_0 then
			break
		end
	end
end
local a = 1
repeat
	local _cond_0 = false
	local _continue_0 = false
	repeat
		a = a + 1
		if a == 5 then
			_cond_0 = a == 10
			_continue_0 = true
			break
		end
		if a == 6 then
			break
		end
		print(a)
		_cond_0 = a == 10
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
until _cond_0
x = 0
repeat
	local _cond_0 = false
	local _continue_0 = false
	repeat
		x = x + 1
		y = x
		if x < 5 then
			_cond_0 = y == 10
			_continue_0 = true
			break
		end
		print(y)
		_cond_0 = y == 10
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
until _cond_0
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
	local _continue_0 = false
	repeat
		if x > 3 and x < 7 then
			_continue_0 = true
			break
		end
		print(x)
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
end
local list
do
	local _accum_0 = { }
	local _len_0 = 1
	for x = 1, 10 do
		local _continue_0 = false
		repeat
			if x > 3 and x < 7 then
				_continue_0 = true
				break
			end
			_accum_0[_len_0] = x
			_len_0 = _len_0 + 1
			_continue_0 = true
		until true
		if not _continue_0 then
			break
		end
	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]
	local _continue_0 = false
	repeat
		if a == 1 then
			_continue_0 = true
			break
		end
		if a == 3 then
			_continue_0 = true
			break
		end
		print(a)
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
end
for x = 1, 10 do
	local _continue_0 = false
	repeat
		if x % 2 == 0 then
			_continue_0 = true
			break
		end
		for y = 2, 12 do
			local _continue_1 = false
			repeat
				if y % 3 == 0 then
					_continue_1 = true
					break
				end
				_continue_1 = true
			until true
			if not _continue_1 then
				break
			end
		end
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
end
while true do
	local _continue_0 = false
	repeat
		do
			if false then
				_continue_0 = true
				break
			end
			break
		end
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
end
while true do
	local _continue_0 = false
	repeat
		if false then
			_continue_0 = true
			break
		end
		do
			return 22
		end
		_continue_0 = true
	until true
	if not _continue_0 then
		break
	end
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
		local _continue_0 = false
		repeat
			repeat
				local _cond_0 = false
				local _continue_1 = false
				repeat
					local _with_0 = tb
					if _with_0 ~= nil then
						_with_0.a = 1
						if _with_0.b then
							_cond_0 = true
							_continue_1 = true
							break
						end
						do
							if _with_0.c then
								break
							end
						end
					end
					_cond_0 = true
					_continue_1 = true
				until true
				if not _continue_1 then
					break
				end
			until _cond_0
			if 123 == x then
				break
			else
				_continue_0 = true
				break
			end
			if y then
				_continue_0 = true
				break
			else
				break
			end
			do
				do
					do
						print(i)
						_continue_0 = true
						break
					end
				end
			end
			print("abc")
			_continue_0 = true
		until true
		if not _continue_0 then
			break
		end
	end
end
do
	repeat
		local _cond_0 = false
		local _continue_0 = false
		repeat
			local byte = stream:read_one()
			if byte then
				if byte == 0 then
					_cond_0 = false
					_continue_0 = true
					break
				end
				print(byte)
			else
				break
			end
			_cond_0 = false
			_continue_0 = true
		until true
		if not _continue_0 then
			break
		end
	until _cond_0
end
do
	local func
	repeat
		local success, result = xpcall(function()
			return func(1, 2, 3)
		end, function(err)
			return print(err)
		end)
		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