aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/export.lua
diff options
context:
space:
mode:
Diffstat (limited to 'spec/outputs/export.lua')
-rw-r--r--spec/outputs/export.lua13
1 files changed, 10 insertions, 3 deletions
diff --git a/spec/outputs/export.lua b/spec/outputs/export.lua
index 962f18c..f1beeee 100644
--- a/spec/outputs/export.lua
+++ b/spec/outputs/export.lua
@@ -1,4 +1,4 @@
1local _module_0 = { } 1local _module_0 = setmetatable({ }, { })
2local a, b, c = 223, 343, 123 2local a, b, c = 223, 343, 123
3_module_0["a"], _module_0["b"], _module_0["c"] = a, b, c 3_module_0["a"], _module_0["b"], _module_0["c"] = a, b, c
4local cool = "dad" 4local cool = "dad"
@@ -62,11 +62,12 @@ do
62 end) 62 end)
63end 63end
64_module_0["cbVal"] = cbVal 64_module_0["cbVal"] = cbVal
65y = function() 65local yy
66yy = function()
66 local h = 100 67 local h = 100
67 local k = 100 68 local k = 100
68end 69end
69_module_0["y"] = y 70_module_0["yy"] = yy
70do 71do
71 local _exp_0 = h 72 local _exp_0 = h
72 if 100 == _exp_0 or 150 == _exp_0 then 73 if 100 == _exp_0 or 150 == _exp_0 then
@@ -322,4 +323,10 @@ do
322end 323end
323_module_0["v3"] = v3 324_module_0["v3"] = v3
324v5 = 5 325v5 = 5
326getmetatable(_module_0)["abc"] = 1
327getmetatable(_module_0).__name = "export"
328getmetatable(_module_0).__call = function(self)
329 return { }
330end
331_module_0["a-b-c-x"] = 123
325return _module_0 332return _module_0