mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-27 19:30:48 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestIfInIf
|
||||
{
|
||||
|
||||
public function run() : int
|
||||
{
|
||||
var k:int = 5;
|
||||
if (k > 5 && k <20)
|
||||
{
|
||||
trace("A");
|
||||
|
||||
if (k < 4)
|
||||
{
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
else if (k > 4 && k<10)
|
||||
{
|
||||
trace("B");
|
||||
if (k < 7)
|
||||
{
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
|
||||
trace("C");
|
||||
return 7;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user