aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/cond.lua
blob: 083419a3330aa921c684c71c581f6386640d0f91 (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
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
local you_cool = false
local _
if cool then
	if you_cool then
		_ = one
	else
		if eatdic then
			_ = yeah
		else
			_ = two
			_ = three
		end
	end
else
	_ = no
end
if cool then
	_ = no
end
if cool then
	_ = no
else
	_ = yes
end
if cool then
	wow(cool)
else
	noso(cool)
end
if working then
	if cool then
		if cool then
			_ = okay
		else
			_ = what
		end
	else
		_ = nah
	end
end
if yeah then
	no(day)
elseif cool(me) then
	okay(ya)
else
	u(way)
end
if yeah then
	no(dad)
else
	if cool(you) then
		okay(bah)
	else
		p(way)
	end
end
if (function() end)() then
	what(ever)
end
if nil then
	flip(me)
else
	it(be, rad)
end
if things(great) then
	no(way)
elseif okay(sure) then
	what(here)
end
if things then
	no(chance)
elseif okay then
	what(now)
end
if things then
	yes(man)
elseif okay(person) then
	hi(there)
else
	hmm(sure)
end
if lets(go) then
	print("greetings")
elseif "just us" then
	print("will smith")
else
	show(5555555)
end
do
	local something = 10
	if something then
		print(something)
	else
		print("else")
	end
end
local hello
do
	local something = 10
	if something then
		hello = print(something)
	else
		hello = print("else")
	end
end
hello = 5 + (function()
	local something = 10
	if something then
		return print(something)
	end
end)()
local z = false
if false then
	_ = one
else
	local x = true
	if x then
		_ = two
	else
		z = true
		if z then
			_ = three
		else
			_ = four
		end
	end
end
local out
if false then
	out = one
else
	local x = true
	if x then
		out = two
	else
		z = true
		if z then
			out = three
		else
			out = four
		end
	end
end
local kzy
kzy = function()
	local something = true
	if something then
		return 1
	else
		local another = false
		if another then
			return 2
		end
	end
end
if not true then
	print("cool!")
end
if not (true and false) then
	print("cool!")
end
if not false then
	print("cool!")
end
if not false then
	print("cool!")
else
	print("no way!")
end
if not nil then
	print("hello")
else
	print("world")
end
local x
if not true then
	x = print("cool!")
end
if not (true and false) then
	x = print("cool!")
end
local y
if not false then
	y = print("cool!")
end
if not false then
	y = print("cool!")
else
	y = print("no way!")
end
if not nil then
	z = print("hello")
else
	z = print("world")
end
print((function()
	if not true then
		return print("cool!")
	end
end)())
print((function()
	if not (true and false) then
		return print("cool!")
	end
end)())
print((function()
	if not false then
		return print("cool!")
	end
end)())
print((function()
	if not false then
		return print("cool!")
	else
		return print("no way!")
	end
end)())
print((function()
	if not nil then
		return print("hello")
	else
		return print("world")
	end
end)())
if not value then
	print("hello")
end
local dddd
if not value then
	dddd = {
		1,
		2,
		3
	}
end
do
	local j = 100
	j = hi()
	if not j then
		error("not j!")
	end
end
local a = 12
local c, b
if something then
	a, c, b = "cool", nil, nil
end
local j
if 1 then
	if 2 then
		j = 3
	end
else
	j = 6
end
local m
if 1 then
	if 2 then
		m = 3
	end
else
	m = 6
end
do
	a({
		b = b
	})
	if a then
		return {
			b = b
		}
	else
		if c then
			return {
				d = e
			}
		else
			return {
				f = 123
			}
		end
	end
end
do
	c({
		d = e
	})
	if a then
		b = tb.b
	elseif c then
		local e = tb.d
	end
end
do
	local _des_0 = math
	if _des_0 then
		local pi = _des_0.pi
		print(pi)
	end
end
do
	local math
	if math then
		local pi = math.pi
		print(pi)
	end
end
do
	local _M = { }
	if _M then
		local Thing = _M.Thing
		a, b = _M.a, _M.b
	end
end
do
	do
		local _des_0 = { }
		if _des_0 then
			_M = _des_0
			local Thing = _M.Thing
			local _obj_0 = _M
			a, b = _obj_0.a, _obj_0.b
		end
	end
end
do
	local v
	if 1 and (function()
		return 0 ~= 1
	end)() then
		v = 1
	else
		v = 2
	end
end
do
	local condChain = 1 < 2 and 2 <= 2 and 2 < 3 and 3 == 3 and 3 > 2 and 2 >= 1 and 1 == 1 and 1 < 3 and 3 ~= 5
	local v
	v = function(x)
		print(x)
		return x
	end
	local evaluation
	do
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			evaluation = false
		else
			evaluation = _cond_0 <= v(3)
		end
	end
	do
		local _cond_0 = v(2)
		if not (v(1) > _cond_0) then
			evaluation = false
		else
			evaluation = _cond_0 <= v(3)
		end
	end
end
do
	do
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			a = false
		else
			local _cond_1 = v(3)
			if not (_cond_0 < _cond_1) then
				a = false
			else
				a = _cond_1 < v(4)
			end
		end
	end
	a = x and y or (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			local _cond_1 = v(3)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(4)
			end
		end
	end)()
	a = (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			local _cond_1 = v(3)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(4)
			end
		end
	end)() or x and y
	a = x and y or (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			local _cond_1 = v(3)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(4)
			end
		end
	end)() or w and z
	a = (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			return _cond_0 < v(3)
		end
	end)() and (function()
		local _cond_0 = v(4)
		if not (b < _cond_0) then
			return false
		else
			local _cond_1 = v(5)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(6)
			end
		end
	end)()
	a = x and y or (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			return _cond_0 < v(3)
		end
	end)() and (function()
		local _cond_0 = v(4)
		if not (b < _cond_0) then
			return false
		else
			local _cond_1 = v(5)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(6)
			end
		end
	end)()
	a = (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			return _cond_0 < v(3)
		end
	end)() and (function()
		local _cond_0 = v(4)
		if not (b < _cond_0) then
			return false
		else
			local _cond_1 = v(5)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(6)
			end
		end
	end)() or x and y
	a = x and y or (function()
		local _cond_0 = v(2)
		if not (v(1) < _cond_0) then
			return false
		else
			return _cond_0 < v(3)
		end
	end)() and (function()
		local _cond_0 = v(4)
		if not (b < _cond_0) then
			return false
		else
			local _cond_1 = v(5)
			if not (_cond_0 < _cond_1) then
				return false
			else
				return _cond_1 < v(6)
			end
		end
	end)() or w and z
	if not (1 < 2) then
		a = false
	else
		local _cond_0 = v1
		if not (2 == _cond_0) then
			a = false
		else
			a = _cond_0 > 3
		end
	end
	local v1, v2, v3, v4, v5, v6
	a = v1 < v2 and v2 < v3 and v3 < v4
	a = x and y or v1 < v2 and v2 < v3 and v3 < v4
	a = v1 < v2 and v2 < v3 and v3 < v4 or x and y
	a = x and y or v1 < v2 and v2 < v3 and v3 < v4 or w and z
	a = v1 < v2 and v2 < v3 and b < v4 and v4 < v5 and v5 < v6
	a = x and y or v1 < v2 and v2 < v3 and b < v4 and v4 < v5 and v5 < v6
	a = v1 < v2 and v2 < v3 and b < v4 and v4 < v5 and v5 < v6 or x and y
	a = x and y or v1 < v2 and v2 < v3 and b < v4 and v4 < v5 and v5 < v6 or w and z
	a = 1 < 2 and 2 == v1 and v1 > 3
end
return nil