-
Notifications
You must be signed in to change notification settings - Fork 661
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3f9e66c
commit d505eee
Showing
20 changed files
with
176 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
40 changes: 40 additions & 0 deletions
40
libsrc/ffdec_lib/testdata/debug_inner/inner2/src/InnerMain2.as
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
package | ||
{ | ||
import flash.display.Sprite; | ||
import flash.events.Event; | ||
import flash.text.TextField; | ||
import flash.text.TextFormat; | ||
|
||
public class InnerMain2 extends Sprite | ||
{ | ||
MyInnerClass2; | ||
|
||
public function InnerMain2() | ||
{ | ||
if (stage) init(); | ||
else addEventListener(Event.ADDED_TO_STAGE, init); | ||
} | ||
|
||
private function init(e:Event = null):void | ||
{ | ||
removeEventListener(Event.ADDED_TO_STAGE, init); | ||
|
||
var textField:TextField = new TextField(); | ||
|
||
textField.text = "Main inner2."; | ||
|
||
var textFormat:TextFormat = new TextFormat(); | ||
textFormat.size = 24; | ||
textFormat.color = 0x000000; | ||
textField.setTextFormat(textFormat); | ||
textField.width = 200; | ||
|
||
addChild(textField); | ||
|
||
textField.x = 50; | ||
textField.y = 100; | ||
} | ||
|
||
} | ||
|
||
} |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.