Files
jpexs-decompiler/libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDoWhile3.as

26 lines
305 B
ActionScript

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");
}
}
}