aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/5.1/attrib.lua
blob: a156e8443198b707678018b809d9a913c7578df3 (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
local a, b, c, d = 1, 2, 3, 4
do
	local a, b = setmetatable({ }, {
		__close = function(self)
			return print("closed")
		end
	})
	local _close_0
	if (function()
		local _val_0 = type(a)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_0 = assert(getmetatable(a) and getmetatable(a).__close, "variable 'a' got a non-closable value")
	elseif a == nil then
		_close_0 = nil
	else
		_close_0 = error("variable 'a' got a non-closable value")
	end
	local _close_1
	if (function()
		local _val_0 = type(b)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_1 = assert(getmetatable(b) and getmetatable(b).__close, "variable 'b' got a non-closable value")
	elseif b == nil then
		_close_1 = nil
	else
		_close_1 = error("variable 'b' got a non-closable value")
	end
	(function(_arg_0, ...)
		local _ok_0 = _arg_0
		if _close_1 ~= nil then
			_close_1(b)
		end
		if _close_0 ~= nil then
			_close_0(a)
		end
		if _ok_0 then
			return ...
		else
			return error(...)
		end
	end)(pcall(function()
		local c, d = 123, 'abc'
		close(a, b)
		return const(c, d)
	end))
end
do
	local a = f()
	local b, c, d
	local _obj_0, _obj_1 = f1()
	b, c = _obj_0[1], _obj_0[2]
	d = _obj_1[1]
end
do
	local a, b, c, d
	local _obj_0, _obj_1, _obj_2 = f()
	a = _obj_0
	b, c = _obj_1[1], _obj_1[2]
	d = _obj_2[1]
end
do
	local a, b
	local _obj_0 = {
		2,
		3
	}
	a, b = _obj_0[1], _obj_0[2]
end
do
	local v
	if flag then
		v = func()
	else
		v = setmetatable({ }, {
			__close = function(self) end
		})
	end
	local _close_0
	if (function()
		local _val_0 = type(v)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_0 = assert(getmetatable(v) and getmetatable(v).__close, "variable 'v' got a non-closable value")
	elseif v == nil then
		_close_0 = nil
	else
		_close_0 = error("variable 'v' got a non-closable value")
	end
	(function(_arg_0, ...)
		local _ok_0 = _arg_0
		if _close_0 ~= nil then
			_close_0(v)
		end
		if _ok_0 then
			return ...
		else
			return error(...)
		end
	end)(pcall(function()
		local f
		do
			local _with_0 = io.open("file.txt")
			_with_0:write("Hello")
			f = _with_0
		end
		local _close_1
		if (function()
			local _val_0 = type(f)
			return 'table' == _val_0 or 'userdata' == _val_0
		end)() then
			_close_1 = assert(getmetatable(f) and getmetatable(f).__close, "variable 'f' got a non-closable value")
		elseif f == nil then
			_close_1 = nil
		else
			_close_1 = error("variable 'f' got a non-closable value")
		end
		return (function(_arg_0, ...)
			local _ok_0 = _arg_0
			if _close_1 ~= nil then
				_close_1(f)
			end
			if _ok_0 then
				return ...
			else
				return error(...)
			end
		end)(pcall(function() end))
	end))
end
do
	local a
	if true then
		a = 1
	end
	local b
	if not false then
		if x then
			b = 1
		end
	end
	local _close_0
	if (function()
		local _val_0 = type(b)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_0 = assert(getmetatable(b) and getmetatable(b).__close, "variable 'b' got a non-closable value")
	elseif b == nil then
		_close_0 = nil
	else
		_close_0 = error("variable 'b' got a non-closable value")
	end
	(function(_arg_0, ...)
		local _ok_0 = _arg_0
		if _close_0 ~= nil then
			_close_0(b)
		end
		if _ok_0 then
			return ...
		else
			return error(...)
		end
	end)(pcall(function()
		local c
		if true then
			local _exp_0 = x
			if "abc" == _exp_0 then
				c = 998
			end
		end
		local d
		if (function()
			if a ~= nil then
				return a
			else
				return b
			end
		end)() then
			d = {
				value = value
			}
		end
		local _close_1
		if (function()
			local _val_0 = type(d)
			return 'table' == _val_0 or 'userdata' == _val_0
		end)() then
			_close_1 = assert(getmetatable(d) and getmetatable(d).__close, "variable 'd' got a non-closable value")
		elseif d == nil then
			_close_1 = nil
		else
			_close_1 = error("variable 'd' got a non-closable value")
		end
		return (function(_arg_0, ...)
			local _ok_0 = _arg_0
			if _close_1 ~= nil then
				_close_1(d)
			end
			if _ok_0 then
				return ...
			else
				return error(...)
			end
		end)(pcall(function() end))
	end))
end
do
	local _
	do
		local _with_0 = io.open("file.txt")
		_with_0:write("Hello")
		_ = _with_0
	end
	local _close_0
	if (function()
		local _val_0 = type(_)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_0 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
	elseif _ == nil then
		_close_0 = nil
	else
		_close_0 = error("variable '_' got a non-closable value")
	end
	(function(_arg_0, ...)
		local _ok_0 = _arg_0
		if _close_0 ~= nil then
			_close_0(_)
		end
		if _ok_0 then
			return ...
		else
			return error(...)
		end
	end)(pcall(function()
		local _ = setmetatable({ }, {
			__close = function()
				return print("second")
			end
		})
		local _close_1
		if (function()
			local _val_0 = type(_)
			return 'table' == _val_0 or 'userdata' == _val_0
		end)() then
			_close_1 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
		elseif _ == nil then
			_close_1 = nil
		else
			_close_1 = error("variable '_' got a non-closable value")
		end
		return (function(_arg_0, ...)
			local _ok_0 = _arg_0
			if _close_1 ~= nil then
				_close_1(_)
			end
			if _ok_0 then
				return ...
			else
				return error(...)
			end
		end)(pcall(function()
			local _ = setmetatable({ }, {
				__close = function()
					return print("first")
				end
			})
			local _close_2
			if (function()
				local _val_0 = type(_)
				return 'table' == _val_0 or 'userdata' == _val_0
			end)() then
				_close_2 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
			elseif _ == nil then
				_close_2 = nil
			else
				_close_2 = error("variable '_' got a non-closable value")
			end
			return (function(_arg_0, ...)
				local _ok_0 = _arg_0
				if _close_2 ~= nil then
					_close_2(_)
				end
				if _ok_0 then
					return ...
				else
					return error(...)
				end
			end)(pcall(function()
				return print("third")
			end))
		end))
	end))
end
local _defers = setmetatable({ }, {
	__close = function(self)
		self[#self]()
		self[#self] = nil
	end
})
local def
def = function(item)
	_defers[#_defers + 1] = item
	return _defers
end
do
	local _ = def(function()
		return print(3)
	end)
	local _close_0
	if (function()
		local _val_0 = type(_)
		return 'table' == _val_0 or 'userdata' == _val_0
	end)() then
		_close_0 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
	elseif _ == nil then
		_close_0 = nil
	else
		_close_0 = error("variable '_' got a non-closable value")
	end
	return (function(_arg_0, ...)
		local _ok_0 = _arg_0
		if _close_0 ~= nil then
			_close_0(_)
		end
		if _ok_0 then
			return ...
		else
			return error(...)
		end
	end)(pcall(function()
		local _ = def(function()
			return print(2)
		end)
		local _close_1
		if (function()
			local _val_0 = type(_)
			return 'table' == _val_0 or 'userdata' == _val_0
		end)() then
			_close_1 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
		elseif _ == nil then
			_close_1 = nil
		else
			_close_1 = error("variable '_' got a non-closable value")
		end
		return (function(_arg_0, ...)
			local _ok_0 = _arg_0
			if _close_1 ~= nil then
				_close_1(_)
			end
			if _ok_0 then
				return ...
			else
				return error(...)
			end
		end)(pcall(function()
			local _ = def(function()
				return print(1)
			end)
			local _close_2
			if (function()
				local _val_0 = type(_)
				return 'table' == _val_0 or 'userdata' == _val_0
			end)() then
				_close_2 = assert(getmetatable(_) and getmetatable(_).__close, "variable '_' got a non-closable value")
			elseif _ == nil then
				_close_2 = nil
			else
				_close_2 = error("variable '_' got a non-closable value")
			end
			return (function(_arg_0, ...)
				local _ok_0 = _arg_0
				if _close_2 ~= nil then
					_close_2(_)
				end
				if _ok_0 then
					return ...
				else
					return error(...)
				end
			end)(pcall(function() end))
		end))
	end))
end