Beginning to add some functionality to the parser

This commit is contained in:
Jeff Avallone
2014-11-26 18:24:40 -05:00
parent c6f2271867
commit facb99e8bc
6 changed files with 70 additions and 7 deletions
+9
View File
@@ -0,0 +1,9 @@
import parser from './javascript/grammar.peg';
import Root from './javascript/root.js';
import Regexp from './javascript/regexp.js';
parser.Parser.Root = Root;
parser.Parser.Regexp = Regexp;
export default parser;