Skip to content

Commit

Permalink
use *positive* statements in jison code generator analysis report whi…
Browse files Browse the repository at this point in the history
…ch is included with every generated parser: this makes those reports easier to understand at a glance.
  • Loading branch information
GerHobbelt committed Oct 30, 2017
1 parent bd2a4ed commit d0d982a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/jison.js
Original file line number Diff line number Diff line change
Expand Up @@ -5361,8 +5361,8 @@ lrGeneratorMixin.generateModule_ = function generateModule_() {
// Options:
//
// default action mode: ............. ${this.options.defaultActionMode.join(',')}
// no try..catch: ................... ${this.options.noTryCatch}
// no default resolve on conflict: ${this.options.noDefaultResolve}
// try..catch: ...................... ${!this.options.noTryCatch}
// default resolve on conflict: ..... ${!this.options.noDefaultResolve}
// on-demand look-ahead: ............ ${this.onDemandLookahead}
// error recovery token skip maximum: ${this.options.errorRecoveryTokenDiscardCount}
// yyerror in parse actions is: ..... ${this.options.parserErrorsAreRecoverable ? 'recoverable' : 'NOT recoverable'},
Expand Down

0 comments on commit d0d982a

Please sign in to comment.