Skip to content

Commit 8b03e48

Browse files
authoredDec 5, 2024
chore: bump default version to 8.3 (glayzzle#1150)

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎src/lexer.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const Lexer = function (engine) {
3030
this.mode_eval = false;
3131
this.asp_tags = false;
3232
this.short_tags = false;
33-
this.version = 801;
33+
this.version = 803;
3434
this.yyprevcol = 0;
3535
this.keywords = {
3636
__class__: this.tok.T_CLASS_C,

‎src/parser.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ const Parser = function (lexer, ast) {
3636
this.token = null;
3737
this.prev = null;
3838
this.debug = false;
39-
this.version = 801;
39+
this.version = 803;
4040
this.extractDoc = false;
4141
this.extractTokens = false;
4242
this.suppressErrors = false;

0 commit comments

Comments
 (0)
Please sign in to comment.