mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-25 13:57:09 +00:00
Fixed showing register assignment of exception on catch in catch.
This commit is contained in:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -32,6 +32,7 @@ package
|
||||
TestTryFinallyReturnNested;
|
||||
TestTryFinallyReturnNested2;
|
||||
TestTryFinallyReturnVoid;
|
||||
TestTryCatchTry;
|
||||
|
||||
public function Main()
|
||||
{
|
||||
|
||||
34
libsrc/ffdec_lib/testdata/as3_cross_compile/src/tests/TestTryCatchTry.as
vendored
Normal file
34
libsrc/ffdec_lib/testdata/as3_cross_compile/src/tests/TestTryCatchTry.as
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
package tests
|
||||
{
|
||||
/**
|
||||
* ...
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class TestTryCatchTry
|
||||
{
|
||||
|
||||
public function run() : void
|
||||
{
|
||||
trace("before try");
|
||||
try
|
||||
{
|
||||
trace("in try");
|
||||
}
|
||||
catch (e:Error)
|
||||
{
|
||||
trace("in catch");
|
||||
try
|
||||
{
|
||||
trace("in catch try");
|
||||
}
|
||||
catch (e2:Error)
|
||||
{
|
||||
trace("in catch in catch");
|
||||
}
|
||||
}
|
||||
trace("after");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user