()
| 40 | } |
| 41 | |
| 42 | private constructor() { |
| 43 | super(); |
| 44 | initLog(); |
| 45 | observers.push(this); |
| 46 | bus.once("initialized", () => { |
| 47 | restoreFromConfig(observers, store.state.config); |
| 48 | this.initApp(); |
| 49 | }); |
| 50 | } |
| 51 | |
| 52 | initApp() { |
| 53 | this.app = createApp(); |
nothing calls this directly
no test coverage detected