Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "flex-js", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "FLEX.JS - Fast lexer (tokenizer, scanner) for JavaScript inspired by FLEX lexer generator", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -572,3 +572,6 @@ /** | ||
// rule action could change buffer or position, so EOF state could be changed too | ||
isEOF = this.index >= this.source.length; | ||
// we need revalidate EOF only if EOF was identified before action were executed | ||
if (isEOF) { | ||
isEOF = this.index >= this.source.length; | ||
} | ||
@@ -575,0 +578,0 @@ return isEOF ? this.terminate() : actionResult; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
68950
1037