Created
June 4, 2012 11:57
-
-
Save ccapndave/2867926 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| package ember; | |
| @:native("Ember.Application") | |
| extern class Application { | |
| public static function create():Application; | |
| } | |
| This works great with myApplication = Application.create() | |
| class MyApp extends embed.Application { } | |
| I'd like a way to get this to work with myApp = MyApp.create(), returning a MyApp (ideally without having to redefine create()). |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment