mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-24 00:06:14 +00:00
28 lines
495 B
ActionScript
28 lines
495 B
ActionScript
package tests
|
|
{
|
|
public class TestForGoto
|
|
{
|
|
|
|
|
|
public function run() : *
|
|
{
|
|
var len:int = 5;
|
|
for (var i:uint = 0; i < len; ++i)
|
|
{
|
|
var c:int = 1;
|
|
|
|
if (c == 2)
|
|
trace("A")
|
|
else if (c == 3)
|
|
trace("B")
|
|
else
|
|
continue;
|
|
|
|
trace("C")
|
|
|
|
}
|
|
trace("exit");
|
|
}
|
|
|
|
}
|
|
} |