Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
regenerated & tested all required files via 'make' + 'make site'
  • Loading branch information
GerHobbelt committed Jan 10, 2013
1 parent 5bb68bd commit e7023d5
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion gh-pages
Submodule gh-pages updated 1 files
+6 −6 assets/js/jison.js
4 changes: 2 additions & 2 deletions lib/jison/util/bnf-parser.js
Expand Up @@ -66,7 +66,7 @@
line: (yylineno)
}
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
loc: (yyloc)
loc: (yylloc)
expected: (string describing the set of expected tokens)
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
}
Expand Down Expand Up @@ -470,7 +470,7 @@ test_match:function (match, indexed_rule) {
done: this.done
};
if (this.options.ranges) {
backup.yylloc.range = this.yyloc.range.slice(0);
backup.yylloc.range = this.yylloc.range.slice(0);
}
}

Expand Down
4 changes: 2 additions & 2 deletions lib/jison/util/lex-parser.js
Expand Up @@ -66,7 +66,7 @@
line: (yylineno)
}
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
loc: (yyloc)
loc: (yylloc)
expected: (string describing the set of expected tokens)
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
}
Expand Down Expand Up @@ -488,7 +488,7 @@ test_match:function (match, indexed_rule) {
done: this.done
};
if (this.options.ranges) {
backup.yylloc.range = this.yyloc.range.slice(0);
backup.yylloc.range = this.yylloc.range.slice(0);
}
}

Expand Down
12 changes: 6 additions & 6 deletions web/content/assets/js/jison.js
Expand Up @@ -1027,7 +1027,7 @@ lrGeneratorMixin.generateModule = function generateModule (opt) {
+ " line: (yylineno)\n"
+ " }\n"
+ " while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {\n"
+ " loc: (yyloc)\n"
+ " loc: (yylloc)\n"
+ " expected: (string describing the set of expected tokens)\n"
+ " recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)\n"
+ " }\n"
Expand Down Expand Up @@ -2040,7 +2040,7 @@ RegExpLexer.prototype = {
done: this.done
};
if (this.options.ranges) {
backup.yylloc.range = this.yyloc.range.slice(0);
backup.yylloc.range = this.yylloc.range.slice(0);
}
}

Expand Down Expand Up @@ -2605,7 +2605,7 @@ require.def("jison/util/bnf-parser",{factory:function(require,exports,module){
line: (yylineno)
}
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
loc: (yyloc)
loc: (yylloc)
expected: (string describing the set of expected tokens)
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
}
Expand Down Expand Up @@ -3009,7 +3009,7 @@ test_match:function (match, indexed_rule) {
done: this.done
};
if (this.options.ranges) {
backup.yylloc.range = this.yyloc.range.slice(0);
backup.yylloc.range = this.yylloc.range.slice(0);
}
}

Expand Down Expand Up @@ -3343,7 +3343,7 @@ require.def("jison/util/lex-parser",{factory:function(require,exports,module){
line: (yylineno)
}
while parser (grammar) errors will also provide these members, i.e. parser errors deliver a superset of attributes: {
loc: (yyloc)
loc: (yylloc)
expected: (string describing the set of expected tokens)
recoverable: (boolean: TRUE when the parser has a error recovery rule available for this particular error)
}
Expand Down Expand Up @@ -3765,7 +3765,7 @@ test_match:function (match, indexed_rule) {
done: this.done
};
if (this.options.ranges) {
backup.yylloc.range = this.yyloc.range.slice(0);
backup.yylloc.range = this.yylloc.range.slice(0);
}
}

Expand Down

0 comments on commit e7023d5

Please sign in to comment.