Skip to content

Commit

Permalink
regenerated library files
Browse files Browse the repository at this point in the history
  • Loading branch information
GerHobbelt committed Nov 12, 2017
1 parent 0b712cd commit 8758ceb
Show file tree
Hide file tree
Showing 37 changed files with 2,180 additions and 409 deletions.
103 changes: 86 additions & 17 deletions dist/cli-cjs-es5.js

Large diffs are not rendered by default.

130 changes: 111 additions & 19 deletions dist/cli-cjs.js
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ var helpers = {
// hack:
var assert$1;

/* parser generated by jison 0.6.1-209 */
/* parser generated by jison 0.6.1-210 */

/*
* Returns a Parser object of the following structure:
Expand Down Expand Up @@ -4989,7 +4989,7 @@ parse: function parse(input) {
return rv;
};

function lex() {
function stdLex() {
var token = lexer.lex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
Expand All @@ -4999,6 +4999,18 @@ parse: function parse(input) {
return token || EOF;
}

function fastLex() {
var token = lexer.fastLex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
token = self.symbols_[token] || token;
}

return token || EOF;
}

var lex = stdLex;


var state, action, r, t;
var yyval = {
Expand Down Expand Up @@ -5110,6 +5122,17 @@ parse: function parse(input) {

lexer.setInput(input, sharedState_yy);

// NOTE: we *assume* no lexer pre/post handlers are set up *after*
// this initial `setInput()` call: hence we can now check and decide
// whether we'll go with the standard, slower, lex() API or the
// `fast_lex()` one:
if (typeof lexer.canIUse === 'function') {
var lexerInfo = lexer.canIUse();
if (lexerInfo.fastLex && typeof fastLex === 'function') {
lex = fastLex;
}
}

yyloc = lexer.yylloc;
lstack[sp] = yyloc;
vstack[sp] = null;
Expand Down Expand Up @@ -5867,7 +5890,7 @@ yyError: 1
};
parser$1.originalParseError = parser$1.parseError;
parser$1.originalQuoteName = parser$1.quoteName;
/* lexer generated by jison-lex 0.6.1-209 */
/* lexer generated by jison-lex 0.6.1-210 */

/*
* Returns a Lexer object of the following structure:
Expand Down Expand Up @@ -7401,10 +7424,10 @@ EOF: 1,
*/
canIUse: function lexer_canIUse() {
var rv = {
fast_lex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function')
fastLex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function') && typeof this.fastLex === 'function'
};

return r;
return rv;
},

/**
Expand Down Expand Up @@ -12309,16 +12332,16 @@ return `{
*/
canIUse: function lexer_canIUse() {
var rv = {
fast_lex: !(
fastLex: !(
typeof this.pre_lex === 'function' ||
typeof this.options.pre_lex === 'function' ||
(this.yy && typeof this.yy.pre_lex === 'function') ||
(this.yy && typeof this.yy.post_lex === 'function') ||
typeof this.options.post_lex === 'function' ||
typeof this.post_lex === 'function'
),
) && typeof this.fastLex === 'function',
};
return r;
return rv;
},


Expand Down Expand Up @@ -13180,7 +13203,7 @@ RegExpLexer.mkStdOptions = mkStdOptions$1;
RegExpLexer.camelCase = camelCase$1;
RegExpLexer.autodetectAndConvertToJSONformat = autodetectAndConvertToJSONformat$1;

/* parser generated by jison 0.6.1-209 */
/* parser generated by jison 0.6.1-210 */

/*
* Returns a Parser object of the following structure:
Expand Down Expand Up @@ -14577,7 +14600,7 @@ parse: function parse(input) {



function lex() {
function stdLex() {
var token = lexer.lex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
Expand All @@ -14587,6 +14610,18 @@ parse: function parse(input) {
return token || EOF;
}

function fastLex() {
var token = lexer.fastLex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
token = self.symbols_[token] || token;
}

return token || EOF;
}

var lex = stdLex;


var state, action, r, t;
var yyval = {
Expand All @@ -14606,6 +14641,17 @@ parse: function parse(input) {

lexer.setInput(input, sharedState_yy);

// NOTE: we *assume* no lexer pre/post handlers are set up *after*
// this initial `setInput()` call: hence we can now check and decide
// whether we'll go with the standard, slower, lex() API or the
// `fast_lex()` one:
if (typeof lexer.canIUse === 'function') {
var lexerInfo = lexer.canIUse();
if (lexerInfo.fastLex && typeof fastLex === 'function') {
lex = fastLex;
}
}



vstack[sp] = null;
Expand Down Expand Up @@ -14848,7 +14894,7 @@ parse: function parse(input) {
};
parser$3.originalParseError = parser$3.parseError;
parser$3.originalQuoteName = parser$3.quoteName;
/* lexer generated by jison-lex 0.6.1-209 */
/* lexer generated by jison-lex 0.6.1-210 */

/*
* Returns a Lexer object of the following structure:
Expand Down Expand Up @@ -16382,10 +16428,10 @@ EOF: 1,
*/
canIUse: function lexer_canIUse() {
var rv = {
fast_lex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function')
fastLex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function') && typeof this.fastLex === 'function'
};

return r;
return rv;
},

/**
Expand Down Expand Up @@ -17023,7 +17069,7 @@ function transform(ebnf) {
// hack:
var assert$2;

/* parser generated by jison 0.6.1-209 */
/* parser generated by jison 0.6.1-210 */

/*
* Returns a Parser object of the following structure:
Expand Down Expand Up @@ -21417,7 +21463,7 @@ parse: function parse(input) {
return rv;
};

function lex() {
function stdLex() {
var token = lexer.lex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
Expand All @@ -21427,6 +21473,18 @@ parse: function parse(input) {
return token || EOF;
}

function fastLex() {
var token = lexer.fastLex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
token = self.symbols_[token] || token;
}

return token || EOF;
}

var lex = stdLex;


var state, action, r, t;
var yyval = {
Expand Down Expand Up @@ -21538,6 +21596,17 @@ parse: function parse(input) {

lexer.setInput(input, sharedState_yy);

// NOTE: we *assume* no lexer pre/post handlers are set up *after*
// this initial `setInput()` call: hence we can now check and decide
// whether we'll go with the standard, slower, lex() API or the
// `fast_lex()` one:
if (typeof lexer.canIUse === 'function') {
var lexerInfo = lexer.canIUse();
if (lexerInfo.fastLex && typeof fastLex === 'function') {
lex = fastLex;
}
}

yyloc = lexer.yylloc;
lstack[sp] = yyloc;
vstack[sp] = null;
Expand Down Expand Up @@ -22295,7 +22364,7 @@ yyError: 1
};
parser$2.originalParseError = parser$2.parseError;
parser$2.originalQuoteName = parser$2.quoteName;
/* lexer generated by jison-lex 0.6.1-209 */
/* lexer generated by jison-lex 0.6.1-210 */

/*
* Returns a Lexer object of the following structure:
Expand Down Expand Up @@ -23829,10 +23898,10 @@ EOF: 1,
*/
canIUse: function lexer_canIUse() {
var rv = {
fast_lex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function')
fastLex: !(typeof this.pre_lex === 'function' || typeof this.options.pre_lex === 'function' || this.yy && typeof this.yy.pre_lex === 'function' || this.yy && typeof this.yy.post_lex === 'function' || typeof this.options.post_lex === 'function' || typeof this.post_lex === 'function') && typeof this.fastLex === 'function'
};

return r;
return rv;
},

/**
Expand Down Expand Up @@ -33116,7 +33185,7 @@ parser.parse = `function parse(input, parseParams) {

//_lexer_without_token_stack:

function lex() {
function stdLex() {
var token = lexer.lex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
Expand All @@ -33126,6 +33195,18 @@ parser.parse = `function parse(input, parseParams) {
return token || EOF;
}

function fastLex() {
var token = lexer.fastLex();
// if token isn't its numeric value, convert
if (typeof token !== 'number') {
token = self.symbols_[token] || token;
}

return token || EOF;
}

var lex = stdLex;

//_lexer_with_token_stack:

// lex function that supports token stacks
Expand Down Expand Up @@ -33222,6 +33303,17 @@ parser.parse = `function parse(input, parseParams) {

lexer.setInput(input, sharedState_yy);

// NOTE: we *assume* no lexer pre/post handlers are set up *after*
// this initial \`setInput()\` call: hence we can now check and decide
// whether we'll go with the standard, slower, lex() API or the
// \`fast_lex()\` one:
if (typeof lexer.canIUse === 'function') {
var lexerInfo = lexer.canIUse();
if (lexerInfo.fastLex && typeof fastLex === 'function') {
lex = fastLex;
}
}

yyloc = lexer.yylloc;
lstack[sp] = yyloc;
vstack[sp] = null;
Expand Down
Loading

0 comments on commit 8758ceb

Please sign in to comment.