1
0
forked from GitHub/gf-rgl

Include concrete syntax flags in generated JS.

This commit is contained in:
bjorn
2008-08-13 12:08:11 +00:00
parent 31c29fd7f8
commit 1350ab1deb
2 changed files with 3 additions and 2 deletions

View File

@@ -282,7 +282,8 @@ function Concrete(abstr) {
this.parser = undefined; this.parser = undefined;
} }
*/ */
function GFConcrete(rules, parser) { function GFConcrete(flags, rules, parser) {
this.flags = flags;
this.rules = rules; this.rules = rules;
if (parser) { if (parser) {
this.parser = parser; this.parser = parser;

File diff suppressed because one or more lines are too long