mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-07-14 03:58:28 +00:00
renamed new as3 test swfs to have as3 prefix and unique SWF name
This commit is contained in:
21
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestInnerFunctions.as
vendored
Normal file
21
libsrc/ffdec_lib/testdata/as3_new/src/tests/TestInnerFunctions.as
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
package tests
|
||||
{
|
||||
|
||||
public class TestInnerFunctions
|
||||
{
|
||||
public function run(a:String):*
|
||||
{
|
||||
var s:int = 0;
|
||||
var innerFunc:Function = function(b:String):*
|
||||
{
|
||||
trace(b);
|
||||
};
|
||||
var k:int = 5;
|
||||
if (k == 6)
|
||||
{
|
||||
s = 8;
|
||||
}
|
||||
innerFunc(a);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user