mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 02:40:45 +00:00
AS3 instruction execute fixes
This commit is contained in:
+2
-2
@@ -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