mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 13:54:49 +00:00
30 lines
311 B
ActionScript
30 lines
311 B
ActionScript
package tests
|
|
{
|
|
import flash.errors.EOFError;
|
|
|
|
public class TestWhileTry
|
|
{
|
|
public function run():*
|
|
{
|
|
while (true)
|
|
{
|
|
try
|
|
{
|
|
while (true)
|
|
{
|
|
trace("a");
|
|
}
|
|
}
|
|
catch (e:EOFError)
|
|
{
|
|
continue;
|
|
}
|
|
catch (e:Error)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|