Fixed AS3 - RegExp escaping

This commit is contained in:
Jindra Petřík
2022-11-30 22:58:35 +01:00
parent 1de378c508
commit a99df959bc
@@ -73,6 +73,7 @@ public class RegExpAvm2Item extends AVM2Item implements Callable {
//not escaped / char, returning null
return null;
}
ret.append("/");
} else if (c == '\\') {
ret.append("\\");
escape = true;