mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-09 07:28:07 +00:00
This commit is contained in:
@@ -26,6 +26,7 @@ All notable changes to this project will be documented in this file.
|
||||
- #1606 Run/Debug SWF that is embedded (has no file associated)
|
||||
- AS3 direct editation - coerce in setproperty
|
||||
- AS3 direct editation - unary minus (negate) compiled as 0 - value
|
||||
- #1159, #1608 Regexp syntax hilight when not a regexp (only division) again
|
||||
|
||||
### Changed
|
||||
- #1565, #1407, #1350 On BinaryData SWF save, parent SWF is saved
|
||||
|
||||
Binary file not shown.
@@ -203,7 +203,7 @@ RegExp = \/([^\r\n/]|\\\/)+\/[a-z]*
|
||||
|
||||
|
||||
{RegExp} {
|
||||
if (prevToken == null || prevToken.type == TokenType.OPERATOR) {
|
||||
if (prevToken == null || (prevToken.type == TokenType.OPERATOR && prevToken.pairValue >= 0)) {
|
||||
return token(TokenType.REGEX);
|
||||
} else {
|
||||
int ch = yychar;
|
||||
|
||||
Reference in New Issue
Block a user