aboutsummaryrefslogtreecommitdiff
path: root/nomsu_environment.moon
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2018-11-11 18:28:10 -0800
committerBruce Hill <bruce@bruce-hill.com>2018-11-11 18:28:34 -0800
commit171e9d674e4ae85e303c90679ad47bceda3b3810 (patch)
tree5d3175abeea4135ba994b2645e0ae0f9d9a0be77 /nomsu_environment.moon
parent3c7a0ff2ea81c0530d0168c4b9f4326a6200b781 (diff)
Re-implemented nomsu -> lua comment translation and added file chunk
comments.
Diffstat (limited to 'nomsu_environment.moon')
-rw-r--r--nomsu_environment.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/nomsu_environment.moon b/nomsu_environment.moon
index e17dcb2..37f239d 100644
--- a/nomsu_environment.moon
+++ b/nomsu_environment.moon
@@ -107,10 +107,10 @@ nomsu_environment = Importer{
-- (typically), so each chunk needs to compile and run before the next one
-- compiles.
ret = nil
- for chunk in *to_run
+ for chunk_no, chunk in ipairs to_run
lua = environment.compile(chunk)
lua\declare_locals!
- lua\prepend "-- File: #{filename}\n"
+ lua\prepend "-- File: #{filename} chunk ##{chunk_no}\n"
ret = environment.run_1_in(lua, environment)
return ret
elseif LuaCode\is_instance(to_run)