($, it = {})
| 144 | purge() { return native("PiuApplication_purge").call(this); }, |
| 145 | } |
| 146 | export function Application($, it = {}) { |
| 147 | let self = (this) ? this : Object.create(application); |
| 148 | it._DeferLink = DeferLink; |
| 149 | it._Skin = Skin; |
| 150 | it._Style = Style; |
| 151 | it._Texture = Texture; |
| 152 | it._TouchLink = TouchLink; |
| 153 | it._View = View; |
| 154 | globalThis.application = self; |
| 155 | self._create($, it); |
| 156 | globalThis.screen.context.onDisplayReady(); |
| 157 | return self; |
| 158 | } |
| 159 | Application.prototype = application; |
| 160 | Application.template = template; |
| 161 | Object.freeze(application); |
nothing calls this directly
no test coverage detected