Adding first cut of code to render alternations

Still need to implement lines to the individual parts
This commit is contained in:
Jeff Avallone
2014-11-30 17:54:12 -05:00
parent ed2c26c39e
commit f8cded8eac
5 changed files with 44 additions and 12 deletions
+2
View File
@@ -2,8 +2,10 @@ import parser from './javascript/grammar.peg';
import Root from './javascript/root.js';
import Regexp from './javascript/regexp.js';
import Match from './javascript/match.js';
parser.Parser.Root = Root;
parser.Parser.Regexp = Regexp;
parser.Parser.Match = Match;
export default parser;