mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-08-06 00:12:06 +00:00
AS3 test methods separated to classes, Fixed AS3: get/set slot for global scope
This commit is contained in:
22
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestMissingDefault.as
vendored
Normal file
22
libsrc/ffdec_lib/testdata/flashdevelop/src/tests/TestMissingDefault.as
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestMissingDefault
|
||||
{
|
||||
public function run():*
|
||||
{
|
||||
var jj:int = 1;
|
||||
switch (jj)
|
||||
{
|
||||
case 1:
|
||||
jj = 1;
|
||||
break;
|
||||
case 2:
|
||||
jj = 2;
|
||||
break;
|
||||
default:
|
||||
jj = 3;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user