mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-28 17:15:32 +00:00
26 lines
305 B
ActionScript
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");
|
|
}
|
|
|
|
}
|
|
|
|
} |