aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/global.lua
blob: 930ecf6681ea6aec71dd3fe4fb9a401a832112a3 (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
do
	a, b, c = 223, 343, nil
	cool = "dad"
end
do
	do
		local _class_0
		local _base_0 = {
			umm = "cool"
		}
		if _base_0.__index == nil then
			_base_0.__index = _base_0
		end
		_class_0 = setmetatable({
			__init = function() end,
			__base = _base_0,
			__name = "Something"
		}, {
			__index = _base_0,
			__call = function(cls, ...)
				local _self_0 = setmetatable({ }, _base_0)
				cls.__init(_self_0, ...)
				return _self_0
			end
		})
		_base_0.__class = _class_0
		Something = _class_0
	end
end
do
	local d
	a, b, c, d = "hello", nil, nil, nil
end
do
	local What
	if this then
		What = 232
	else
		What = 4343
	end
	local another = 3434
	Another = 7890
	if inner then
		local Yeah = "10000"
	end
	if this then
		What = 232
	else
		What = 4343
	end
end
do
	if this then
		What = 232
	else
		What = 4343
	end
	x, y, z = 1, 2, 3
	y = function()
		local hallo = 3434
	end
	do
		local _with_0 = tmp
		local j = 2000
	end
end
do
	x = 3434
	if y then
		x = 10
	end
end
do
	if y then
		local x = 10
	end
	x = 3434
end
do
	do
		k = 1212
		do
			local h = 100
		end
		y = function()
			local h = 100
			k = 100
		end
	end
	local h = 100
end