First cut of rendering match elements

This is currently broken, but a starting point for further work.
This commit is contained in:
Jeff Avallone
2014-12-02 21:02:48 -05:00
parent b9dd80a142
commit 7d84669536
7 changed files with 100 additions and 4 deletions
+6
View File
@@ -3,9 +3,15 @@ import parser from './javascript/grammar.peg';
import Root from './javascript/root.js';
import Regexp from './javascript/regexp.js';
import Match from './javascript/match.js';
import Subexp from './javascript/subexp.js';
import Charset from './javascript/charset.js';
import Terminal from './javascript/terminal.js';
parser.Parser.Root = Root;
parser.Parser.Regexp = Regexp;
parser.Parser.Match = Match;
parser.Parser.Subexp = Subexp;
parser.Parser.Charset = Charset;
parser.Parser.Terminal = Terminal;
export default parser;