aboutsummaryrefslogtreecommitdiff
path: root/parser.moon
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-08-28 15:08:00 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-08-28 15:08:07 -0700
commite44acbf338e17fb86a47eebf448c27a04d446048 (patch)
treedce45fa28ffd070c70ae2c0b27ad9794489cec6a /parser.moon
parent930d522fbc3ab57faa926ed85f0d35d661722402 (diff)
Lots of overhaul, supporting a new Object Oriented approach (e.g.
%obj::action 1 2) and syntax.
Diffstat (limited to 'parser.moon')
-rw-r--r--parser.moon2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.moon b/parser.moon
index 9d884a6..3e14063 100644
--- a/parser.moon
+++ b/parser.moon
@@ -74,7 +74,7 @@ setmetatable(NOMSU_DEFS, {__index:(key)=>
return make_node
})
-Parser = {version:2, patterns:{}}
+Parser = {version:3, patterns:{}}
do
-- Just for cleanliness, I put the language spec in its own file using a slightly modified
-- version of the lpeg.re syntax.