aboutsummaryrefslogtreecommitdiff
path: root/nomsu.moon
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-05-30 14:08:03 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-05-30 14:08:30 -0700
commitb3df63eb1044a740e205524aaa37bebe08bd169e (patch)
tree28393a8edc5ee66605a521e2a62e94ac9fcf76fe /nomsu.moon
parent624fcdcc7e8502cd8f0dc4c51669e5d1de7811b9 (diff)
Added 'for (%k,%v) in ...' alias for 'for %k = %v in ...'
Diffstat (limited to 'nomsu.moon')
-rwxr-xr-xnomsu.moon1
1 files changed, 0 insertions, 1 deletions
diff --git a/nomsu.moon b/nomsu.moon
index 1d2bff9..59c1251 100755
--- a/nomsu.moon
+++ b/nomsu.moon
@@ -55,7 +55,6 @@ STDIN, STDOUT, STDERR = "/dev/fd/0", "/dev/fd/1", "/dev/fd/2"
string.as_lua_id = (str)->
"_"..(str\gsub("%W", (c)-> if c == "_" then "__" else ("_%x")\format(c\byte!)))
-
-- TODO:
-- consider non-linear codegen, rather than doing thunks for things like comprehensions
-- type checking?