Fixed: #1336 AS3 direct editation - Regexp / character escaping

This commit is contained in:
Jindra Petřík
2021-02-25 07:40:25 +01:00
parent 7573e03d33
commit a508e4d6db
2 changed files with 4 additions and 1 deletions

View File

@@ -2241,7 +2241,6 @@ public class ActionScript3Parser {
int spos = p.lastIndexOf('/');
String mod = p.substring(spos + 1);
p = p.substring(0, spos);
p = p.replace("\\/", "/");
ret = new RegExpAvm2Item(p, mod, null, null);
allowMemberOrCall = true;