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

@@ -32,7 +32,8 @@ All notable changes to this project will be documented in this file.
- #1328 AS1/2/3 direct editation - empty commands (just semicolon)
- #1310 AS1/2/3 direct editation - modulo operator precedence
- AS3 - escaping star import
- #1298 AS1/2 colon syntax handling
- #1298 AS1 colon syntax handling
- #1298 AS1 direct editation of add,eq,ne and such operations
### Removed
- #1631 ActiveX Flash component download in windows installer

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;