($, it = {})
| 93 | } |
| 94 | |
| 95 | export function Application($, it = {}) { |
| 96 | let self = (this) ? this : Object.create(application); |
| 97 | it._DeferLink = DeferLink; |
| 98 | it._Skin = Skin; |
| 99 | it._Style = Style; |
| 100 | it._Texture = Texture; |
| 101 | it._TouchLink = TouchLink; |
| 102 | it._View = View; |
| 103 | global.application = self; |
| 104 | self._create($, it); |
| 105 | global.screen.context.onDisplayReady(); |
| 106 | return self; |
| 107 | } |
| 108 | Application.prototype = application; |
| 109 | Application.template = template; |
| 110 | Object.freeze(application); |
nothing calls this directly
no test coverage detected