aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/switch.lua
blob: e4dedc9cc8ba1fee1aded2bf605b889f11b520f7 (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
do
	local _exp_0 = value
	if "cool" == _exp_0 then
		print("hello world")
	end
end
do
	local _exp_0 = value
	if "cool" == _exp_0 then
		print("hello world")
	else
		print("okay rad")
	end
end
do
	local _exp_0 = value
	if "cool" == _exp_0 then
		print("hello world")
	elseif "yeah" == _exp_0 then
		local _ = [[FFFF]] + [[MMMM]]
	elseif (2323 + 32434) == _exp_0 then
		print("okay")
	else
		print("okay rad")
	end
end
local out
do
	local _exp_0 = value
	if "cool" == _exp_0 then
		out = print("hello world")
	else
		out = print("okay rad")
	end
end
do
	local _exp_0 = value
	if "cool" == _exp_0 then
		out = xxxx
	elseif "umm" == _exp_0 then
		out = 34340
	else
		out = error("this failed big time")
	end
end
do
	local _with_0 = something
	local _exp_0 = _with_0:value()
	if _with_0.okay == _exp_0 then
		local _ = "world"
	else
		local _ = "yesh"
	end
end
fix(this)
call_func((function()
	local _exp_0 = something
	if 1 == _exp_0 then
		return "yes"
	else
		return "no"
	end
end)())
do
	local _exp_0 = hi
	if (hello or world) == _exp_0 then
		local _ = greene
	end
end
do
	local _exp_0 = hi
	if "one" == _exp_0 or "two" == _exp_0 then
		print("cool")
	elseif "dad" == _exp_0 then
		local _ = no
	end
end
do
	local _exp_0 = hi
	if (3 + 1) == _exp_0 or hello() == _exp_0 or (function()
		return 4
	end)() == _exp_0 then
		local _ = yello
	else
		print("cool")
	end
end
do
	local dict = {
		{ },
		{
			1,
			2,
			3
		},
		a = {
			b = {
				c = 1
			}
		},
		x = {
			y = {
				z = 1
			}
		}
	}
	local _type_0 = type(dict)
	local _tab_0 = "table" == _type_0 or "userdata" == _type_0
	if _tab_0 then
		local first = dict[1]
		local one
		do
			local _obj_0 = dict[2]
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				one = _obj_0[1]
			end
		end
		local two
		do
			local _obj_0 = dict[2]
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				two = _obj_0[2]
			end
		end
		local three
		do
			local _obj_0 = dict[2]
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				three = _obj_0[3]
			end
		end
		local c
		do
			local _obj_0 = dict.a
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				do
					local _obj_1 = _obj_0.b
					local _type_2 = type(_obj_1)
					if "table" == _type_2 or "userdata" == _type_2 then
						c = _obj_1.c
					end
				end
			end
		end
		local z
		do
			local _obj_0 = dict.x
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				do
					local _obj_1 = _obj_0.y
					local _type_2 = type(_obj_1)
					if "table" == _type_2 or "userdata" == _type_2 then
						z = _obj_1.z
					end
				end
			end
		end
		if first ~= nil and one ~= nil and two ~= nil and three ~= nil and c ~= nil and z ~= nil then
			print(first, one, two, three, c, z)
		end
	end
end
do
	local items = {
		{
			x = 100,
			y = 200
		},
		{
			width = 300,
			height = 400
		},
		false
	}
	for _index_0 = 1, #items do
		local item = items[_index_0]
		local _type_0 = type(item)
		local _tab_0 = "table" == _type_0 or "userdata" == _type_0
		local _match_0 = false
		if _tab_0 then
			local x = item.x
			local y = item.y
			if x ~= nil and y ~= nil then
				_match_0 = true
				print("Vec2 " .. tostring(x) .. ", " .. tostring(y))
			end
		end
		if not _match_0 then
			local _match_1 = false
			if _tab_0 then
				local width = item.width
				local height = item.height
				if width ~= nil and height ~= nil then
					_match_1 = true
					print("Size " .. tostring(width) .. ", " .. tostring(height))
				end
			end
			if not _match_1 then
				if false == item then
					print("None")
				else
					local _match_2 = false
					if _tab_0 then
						local cls = item.__class
						if cls ~= nil then
							_match_2 = true
							if ClassA == cls then
								print("Object A")
							elseif ClassB == cls then
								print("Object B")
							end
						end
					end
					if not _match_2 then
						local _match_3 = false
						if _tab_0 then
							local mt = getmetatable(item)
							if mt ~= nil then
								_match_3 = true
								print("A table with metatable")
							end
						end
						if not _match_3 then
							print("item not accepted!")
						end
					end
				end
			end
		end
	end
end
do
	local tb = { }
	do
		local _type_0 = type(tb)
		local _tab_0 = "table" == _type_0 or "userdata" == _type_0
		if _tab_0 then
			local a = tb.a
			local b = tb.b
			if a == nil then
				a = 1
			end
			if b == nil then
				b = 2
			end
			print(a, b)
		end
	end
	do
		local _type_0 = type(tb)
		local _tab_0 = "table" == _type_0 or "userdata" == _type_0
		if _tab_0 then
			local a = tb.a
			local b = tb.b
			if b == nil then
				b = 2
			end
			if a ~= nil then
				print("partially matched", a, b)
			end
		end
	end
	local _type_0 = type(tb)
	local _tab_0 = "table" == _type_0 or "userdata" == _type_0
	local _match_0 = false
	if _tab_0 then
		local a = tb.a
		local b = tb.b
		if a ~= nil and b ~= nil then
			_match_0 = true
			print(a, b)
		end
	end
	if not _match_0 then
		print("not matched")
	end
end
do
	local tb = {
		x = "abc"
	}
	local _type_0 = type(tb)
	local _tab_0 = "table" == _type_0 or "userdata" == _type_0
	local _match_0 = false
	if _tab_0 then
		local x = tb.x
		local y = tb.y
		if x ~= nil and y ~= nil then
			_match_0 = true
			print("x: " .. tostring(x) .. " with y: " .. tostring(y))
		end
	end
	if not _match_0 then
		if _tab_0 then
			local x = tb.x
			if x ~= nil then
				print("x: " .. tostring(x) .. " only")
			end
		end
	end
end
do
	local matched
	local _exp_0 = tb
	if 1 == _exp_0 then
		matched = "1"
	else
		local _type_0 = type(_exp_0)
		local _tab_0 = "table" == _type_0 or "userdata" == _type_0
		local _match_0 = false
		if _tab_0 then
			local x = _exp_0.x
			if x ~= nil then
				_match_0 = true
				matched = x
			end
		end
		if not _match_0 then
			if false == _exp_0 then
				matched = "false"
			else
				matched = nil
			end
		end
	end
end
do
	local _exp_0 = tb
	if nil == _exp_0 then
		return "invalid"
	else
		local _type_0 = type(_exp_0)
		local _tab_0 = "table" == _type_0 or "userdata" == _type_0
		local _match_0 = false
		if _tab_0 then
			local a = _exp_0.a
			local b = _exp_0.b
			if a ~= nil and b ~= nil then
				_match_0 = true
				return tostring(a + b)
			end
		end
		if not _match_0 then
			if 1 == _exp_0 or 2 == _exp_0 or 3 == _exp_0 or 4 == _exp_0 or 5 == _exp_0 then
				return "number 1 - 5"
			else
				local _match_1 = false
				if _tab_0 then
					local matchAnyTable = _exp_0.matchAnyTable
					if matchAnyTable == nil then
						matchAnyTable = "fallback"
					end
					_match_1 = true
					return matchAnyTable
				end
				if not _match_1 then
					return "should not reach here unless it is not a table"
				end
			end
		end
	end
end
do
	local _exp_0 = y
	local _type_0 = type(_exp_0)
	local _tab_0 = "table" == _type_0 or "userdata" == _type_0
	if _tab_0 then
		local mt = (function()
			local _obj_0 = _exp_0.x
			if _obj_0 ~= nil then
				return getmetatable(_obj_0)
			end
			return nil
		end)()
		if mt ~= nil then
			print(mt)
		end
	end
end
do
	local _exp_0 = tb
	local _type_0 = type(_exp_0)
	local _tab_0 = "table" == _type_0 or "userdata" == _type_0
	local _match_0 = false
	if _tab_0 then
		local item
		do
			local _obj_0 = _exp_0[1]
			local _type_1 = type(_obj_0)
			if "table" == _type_1 or "userdata" == _type_1 then
				item = _obj_0[1]
			end
		end
		if item ~= nil then
			_match_0 = true
			print(item)
		end
	end
	if not _match_0 then
		if _tab_0 then
			local a = _exp_0[1]
			local b = _exp_0[2]
			if a == nil then
				a = 1
			end
			if b == nil then
				b = "abc"
			end
			print(a, b)
		end
	end
end
return nil