aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2018-10-29 13:03:13 -0700
committerBruce Hill <bruce@bruce-hill.com>2018-10-29 13:03:19 -0700
commit8515a874271401927210e100b6dc0299c6afd0bf (patch)
treedfa30827dfcfb4aa4e347a3b8c0d5e6aeac6f24a
parent23abab4f809e8d4b825746580082292db700036b (diff)
Bumped compiler version.
-rw-r--r--nomsu_compiler.moon3
1 files changed, 1 insertions, 2 deletions
diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon
index 83cba68..eb9ea45 100644
--- a/nomsu_compiler.moon
+++ b/nomsu_compiler.moon
@@ -93,7 +93,7 @@ MAX_LINE = 80 -- For beautification purposes, try not to make lines much longer
NomsuCompiler = setmetatable {}, {__tostring: => "Nomsu"}
_anon_chunk = 0
with NomsuCompiler
- .NOMSU_COMPILER_VERSION = 9
+ .NOMSU_COMPILER_VERSION = 10
.NOMSU_SYNTAX_VERSION = max_parser_version
.can_optimize = -> false
@@ -116,7 +116,6 @@ with NomsuCompiler
__imported: Dict{}
__parent: nil
}
- assert .environment.globals
setmetatable(.environment, {
__index: (key)=>
if imported = rawget(@, "__imported")