aboutsummaryrefslogtreecommitdiff
path: root/parser.moon
diff options
context:
space:
mode:
authorBruce Hill <bitbucket@bruce-hill.com>2018-07-23 15:28:35 -0700
committerBruce Hill <bitbucket@bruce-hill.com>2018-07-23 15:29:03 -0700
commit765cc704d5e9d652dc606440203e8c6a0fd3361e (patch)
tree8b348bed84a9111d87335e48136169062200b86f /parser.moon
parent991d9994e9a792a47dd0fac6ab2d1b5a110b65c8 (diff)
Renamed nomsu_tree -> syntax_tree, so anyone looking for syntax trees
knows where to look.
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 cf67205..a961b0b 100644
--- a/parser.moon
+++ b/parser.moon
@@ -7,7 +7,7 @@ lpeg.setmaxstack 10000
{:insert, :remove} = table
files = require 'files'
{:NomsuCode, :LuaCode, :Source} = require "code_obj"
-AST = require "nomsu_tree"
+AST = require "syntax_tree"
NOMSU_DEFS = with {}
-- Newline supports either windows-style CR+LF or unix-style LF