Fixed: #1298 AS1 direct editation of add,eq,ne and such operations

This commit is contained in:
Jindra Petřík
2021-03-04 22:51:12 +01:00
parent 7d6931a81a
commit c7e400de59
2 changed files with 3 additions and 2 deletions

View File

@@ -1561,7 +1561,7 @@ public class ActionScript2Parser {
}
break;
case IDENTIFIER:
switch (lookahead.value.toString()) {
switch (op.value.toString()) {
case "add":
lhs = new StringAddActionItem(null, null, lhs, rhs);
break;