Skip to content

Commit

Permalink
chore: bump default version to 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
czosel committed Dec 4, 2024
1 parent 9c5902b commit f88a100
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const Lexer = function (engine) {
this.mode_eval = false;
this.asp_tags = false;
this.short_tags = false;
this.version = 801;
this.version = 803;
this.yyprevcol = 0;
this.keywords = {
__class__: this.tok.T_CLASS_C,
Expand Down
2 changes: 1 addition & 1 deletion src/parser.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const Parser = function (lexer, ast) {
this.token = null;
this.prev = null;
this.debug = false;
this.version = 801;
this.version = 803;
this.extractDoc = false;
this.extractTokens = false;
this.suppressErrors = false;
Expand Down

0 comments on commit f88a100

Please sign in to comment.