Replacements table in AS1/2,

not much useful since eval() is used in most cases
This commit is contained in:
Jindra Petřík
2025-07-26 12:20:21 +02:00
parent 55f43b5390
commit 55ee4586de
15 changed files with 177 additions and 84 deletions
@@ -64,7 +64,7 @@ import java.util.List;
this.offset = ofst;
prevToken = null;
Token t = yylex();
if (t.type != TokenType.COMMENT) {
if (t != null && t.type != TokenType.COMMENT) {
prevToken = t;
}
for (; t != null; t = yylex()) {