AS3 instruction execute fixes

This commit is contained in:
honfika@gmail.com
2015-11-06 09:37:35 +01:00
parent 22f5bfa5c3
commit 8088e50276
28 changed files with 107 additions and 67 deletions

View File

@@ -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;
}
}