mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-09 12:28:12 +00:00
Fixed: #1298 AS1 direct editation of add,eq,ne and such operations
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user