mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-02 14:41:23 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
17
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDoWhile.as
vendored
Normal file
17
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestDoWhile.as
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestDoWhile
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var a:* = 8;
|
||||
do
|
||||
{
|
||||
trace("a=" + a);
|
||||
a++;
|
||||
} while (a < 20);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user