aboutsummaryrefslogtreecommitdiff
path: root/nomsu_compiler.moon
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-09-14 14:11:54 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-09-14 14:12:22 -0700
commit21d0d7901cc378181034c0db6221bca5adca591e (patch)
tree1954297f51a3690208cbbcba2ab971ca0e2a93c0 /nomsu_compiler.moon
parent7c1f2dfd69afe119322e19b3a4061876b3dd1033 (diff)
Upgraded nomsu.2.peg and fixed minor bug in Source serialization in
trees.
Diffstat (limited to 'nomsu_compiler.moon')
-rw-r--r--nomsu_compiler.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/nomsu_compiler.moon b/nomsu_compiler.moon
index 606bf45..8711839 100644
--- a/nomsu_compiler.moon
+++ b/nomsu_compiler.moon
@@ -56,7 +56,7 @@ make_tree = (tree, userdata)->
Parsers = {}
max_parser_version = 0
for version=1,999
- continue unless version == 4 or version == 3 -- TODO: remove
+ continue unless version == 4 or version == 3 or version == 2 -- TODO: remove
peg_file = io.open("nomsu.#{version}.peg")
if not peg_file and package.nomsupath
for path in package.nomsupath\gmatch("[^;]+")