mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-05 00:55:55 +00:00
break detection fix,
do..while fix
This commit is contained in:
Binary file not shown.
Binary file not shown.
@@ -27,6 +27,7 @@ package
|
||||
TestDoWhile;
|
||||
TestDoWhile2;
|
||||
TestDoWhile3;
|
||||
TestDoWhile4;
|
||||
TestExpressions;
|
||||
TestFinallyZeroJump;
|
||||
TestFor;
|
||||
|
||||
26
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDoWhile4.as
vendored
Normal file
26
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDoWhile4.as
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestDoWhile4
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var k:int = 8;
|
||||
do
|
||||
{
|
||||
if (k == 9)
|
||||
{
|
||||
trace("h");
|
||||
if (k == 9)
|
||||
{
|
||||
trace("f");
|
||||
continue;
|
||||
}
|
||||
trace("b");
|
||||
}
|
||||
trace("gg");
|
||||
} while (k < 10);
|
||||
trace("ss");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user