mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-14 10:34:29 +00:00
19 lines
249 B
ActionScript
19 lines
249 B
ActionScript
package tests
|
|
{
|
|
|
|
public class TestInnerFunctionScope
|
|
{
|
|
public function run(a:String):*
|
|
{
|
|
var innerFunc:Function = function(b:String):*
|
|
{
|
|
testProm = 4;
|
|
trace(testProm);
|
|
};
|
|
|
|
innerFunc(a);
|
|
}
|
|
}
|
|
}
|
|
|
|
var testProm:int = 5; |