Re-generate jison js files

This commit is contained in:
Tyler Long
2018-03-11 16:43:02 +08:00
parent 003e5575b9
commit c0c7c96f28
8 changed files with 29 additions and 57 deletions

View File

@@ -1,4 +1,4 @@
/* parser generated by jison 0.4.17 */
/* parser generated by jison 0.4.18 */
/*
Returns a Parser object of the following structure:
@@ -311,13 +311,9 @@ parseError: function parseError(str, hash) {
if (hash.recoverable) {
this.trace(str);
} else {
function _parseError (msg, hash) {
this.message = msg;
this.hash = hash;
}
_parseError.prototype = Error;
throw new _parseError(str, hash);
var error = new Error(str);
error.hash = hash;
throw error;
}
},
parse: function parse(input) {