mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-09 07:48:16 +00:00
AS3 instruction execute fixes
This commit is contained in:
4
libsrc/ffdec_lib/testdata/run_as3/RunMain.as
vendored
4
libsrc/ffdec_lib/testdata/run_as3/RunMain.as
vendored
@@ -43,7 +43,7 @@
|
||||
|
||||
var result;
|
||||
try {
|
||||
result = Run.run();
|
||||
result = testFunction();
|
||||
} catch (e) {
|
||||
result = e.toString();
|
||||
}
|
||||
@@ -55,7 +55,7 @@
|
||||
try {
|
||||
var result = Run.run();
|
||||
return "Result:" + result + " Type:" + typeof(result);
|
||||
} catch (ex:Error) {
|
||||
} catch (ex) {
|
||||
return "Error:" + ex;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user