mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-02 11:04:48 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
19
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestLogicalComputing.as
vendored
Normal file
19
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestLogicalComputing.as
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestLogicalComputing
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var b:Boolean = false;
|
||||
var i:* = 5;
|
||||
var j:* = 7;
|
||||
if (i > j)
|
||||
{
|
||||
j = 9;
|
||||
b = true;
|
||||
}
|
||||
b = (i == 0 || i == 1) && j == 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user