@@ -3,31 +3,36 @@ local dump = require("moonscript.dump")
33local transform = require (" moonscript.transform" )
44local NameProxy , LocalName
55do
6- local _table_0 = require (" moonscript.transform.names" )
7- NameProxy , LocalName = _table_0 .NameProxy , _table_0 .LocalName
6+ local _obj_0 = require (" moonscript.transform.names" )
7+ NameProxy , LocalName = _obj_0 .NameProxy , _obj_0 .LocalName
88end
99local Set
1010do
11- local _table_0 = require (" moonscript.data" )
12- Set = _table_0 .Set
11+ local _obj_0 = require (" moonscript.data" )
12+ Set = _obj_0 .Set
1313end
1414local ntype , has_value
1515do
16- local _table_0 = require (" moonscript.types" )
17- ntype , has_value = _table_0 .ntype , _table_0 .has_value
16+ local _obj_0 = require (" moonscript.types" )
17+ ntype , has_value = _obj_0 .ntype , _obj_0 .has_value
1818end
1919local statement_compilers
2020do
21- local _table_0 = require (" moonscript.compile.statement" )
22- statement_compilers = _table_0 .statement_compilers
21+ local _obj_0 = require (" moonscript.compile.statement" )
22+ statement_compilers = _obj_0 .statement_compilers
2323end
2424local value_compilers
2525do
26- local _table_0 = require (" moonscript.compile.value" )
27- value_compilers = _table_0 .value_compilers
26+ local _obj_0 = require (" moonscript.compile.value" )
27+ value_compilers = _obj_0 .value_compilers
2828end
29- local concat , insert = table.concat , table.insert
30- local pos_to_line , get_closest_line , trim , unpack = util .pos_to_line , util .get_closest_line , util .trim , util .unpack
29+ local concat , insert
30+ do
31+ local _obj_0 = table
32+ concat , insert = _obj_0 .concat , _obj_0 .insert
33+ end
34+ local pos_to_line , get_closest_line , trim , unpack
35+ pos_to_line , get_closest_line , trim , unpack = util .pos_to_line , util .get_closest_line , util .trim , util .unpack
3136local mtype = util .moon .type
3237local indent_char = " "
3338local Line , DelayedLine , Lines , Block , RootBlock
0 commit comments