aboutsummaryrefslogtreecommitdiff
path: root/code_obj.moon
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2018-11-06 15:13:55 -0800
committerBruce Hill <bruce@bruce-hill.com>2018-11-06 15:15:14 -0800
commitc8ccbe5f42b5a197010b5ee95491dce5b9bbcbf4 (patch)
treedb2259bad177e558067a7cc2ea09836749242009 /code_obj.moon
parent0f17c5eb9ac4660f2f969bd1e67af42713e45eac (diff)
Removed utils.lua, simplified some metaprogramming stuff, added native support
for calling functions with (%a %b %c) instead of (call %a with [%b, %c]), renamed _List -> List, _Dict -> Dict, improved example code.
Diffstat (limited to 'code_obj.moon')
-rw-r--r--code_obj.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/code_obj.moon b/code_obj.moon
index 22969a4..cb8eae2 100644
--- a/code_obj.moon
+++ b/code_obj.moon
@@ -245,7 +245,7 @@ class LuaCode extends Code
walk self, 1
return {
nomsu_filename:@source.filename
- lua_filename:tostring(@source)..".lua", lua_file:@stringify!
+ lua_filename:tostring(@source)..".lua", lua_file:@text!
:lua_to_nomsu, :nomsu_to_lua
}