mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-19 05:18:09 +00:00
31 lines
382 B
ActionScript
31 lines
382 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestChain2
|
|
{
|
|
public function run():*
|
|
{
|
|
var g:Array = null;
|
|
var h:Boolean = false;
|
|
var extraLine:Boolean = false;
|
|
var r:int = 7;
|
|
var t:int = 0;
|
|
t = this.getInt();
|
|
if (t + 1 < g.length)
|
|
{
|
|
t++;
|
|
h = true;
|
|
}
|
|
if (t >= 0)
|
|
{
|
|
trace("ch");
|
|
}
|
|
}
|
|
|
|
private function getInt():int
|
|
{
|
|
return 5;
|
|
}
|
|
}
|
|
}
|