mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 18:14:31 +00:00
Fixed and+dowhile on ASC2 - precontinue can use stack.
This commit is contained in:
26
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDoWhile3.as
vendored
Normal file
26
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestDoWhile3.as
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
package tests
|
||||
{
|
||||
/**
|
||||
* ...
|
||||
* @author JPEXS
|
||||
*/
|
||||
public class TestDoWhile3
|
||||
{
|
||||
private var ch:String;
|
||||
|
||||
public function run() : void
|
||||
{
|
||||
do
|
||||
{
|
||||
nextChar();
|
||||
} while ( ch != '\n' && ch != '' )
|
||||
}
|
||||
|
||||
private function nextChar() : void
|
||||
{
|
||||
trace("process next char");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user