()
| 57 | } |
| 58 | |
| 59 | destroy(): void { |
| 60 | this.extensions.getAll().forEach((plugin) => { |
| 61 | this.unregisterPlugin(plugin.name); |
| 62 | this.emitter.emit('plugin:destroyed', plugin); |
| 63 | }); |
| 64 | this.extensions.destroy(); |
| 65 | } |
| 66 | } |
nothing calls this directly
no test coverage detected