mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-10 04:16:19 +00:00
Added: #1383 AS Debugger - debugging nested SWFs
This commit is contained in:
24
libsrc/ffdec_lib/testdata/debug_inner/inner/src/InnerMain.as
vendored
Normal file
24
libsrc/ffdec_lib/testdata/debug_inner/inner/src/InnerMain.as
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
package
|
||||
{
|
||||
import flash.display.Sprite;
|
||||
import flash.events.Event;
|
||||
|
||||
public class InnerMain extends Sprite
|
||||
{
|
||||
MyInnerClass;
|
||||
|
||||
public function InnerMain()
|
||||
{
|
||||
if (stage) init();
|
||||
else addEventListener(Event.ADDED_TO_STAGE, init);
|
||||
}
|
||||
|
||||
private function init(e:Event = null):void
|
||||
{
|
||||
removeEventListener(Event.ADDED_TO_STAGE, init);
|
||||
// entry point
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user