Include concrete syntax flags in generated JS.

This commit is contained in:
bjorn
2008-08-13 12:08:11 +00:00
parent 538f173447
commit b296099441
3 changed files with 9 additions and 3 deletions

View File

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

File diff suppressed because one or more lines are too long