- AS1 slash syntax support (decompilation, direct editation)

- AS1/2 Using eval, set functions on obfuscated names instead of §§ syntax where applicable
This commit is contained in:
Jindra Petřík
2018-05-27 16:52:55 +02:00
parent 6ec124f71a
commit d138c61072
21 changed files with 2408 additions and 2521 deletions

View File

@@ -732,7 +732,7 @@ public class ActionScript2Test extends ActionScript2TestBase {
+ "a = escape(\"how\");\r\n"
+ "var f = a;\r\n"
+ "fscommand(\"alert(\\\"hi\\\");\");\r\n"
+ "a = mc._alpha;\r\n"
+ "a = getProperty(mc, _alpha);\r\n"
+ "a = getTimer();\r\n"
+ "getURL(\"http://localhost/\",\"wnd\",\"POST\");\r\n"
+ "a = getVersion();\r\n"
@@ -772,8 +772,8 @@ public class ActionScript2Test extends ActionScript2TestBase {
+ "a = random(10);\r\n"
+ "removeMovieClip(mc);\r\n"
+ "setInterval(tst,5,f);\r\n"
+ "mc._alpha = 25;\r\n"
+ "setTimeout(tst,5,f);\r\n"
+ "setProperty(mc, _alpha, 25);\r\n"
+ "setTimeout(ts,5,f);\r\n"
+ "showRedrawRegions(false,0);\r\n"
+ "startDrag(mc,1,5,5,6,6);\r\n"
+ "stop();\r\n"