()
| 353 | } |
| 354 | |
| 355 | protected _stopServer() { |
| 356 | this.run?.server.close(); |
| 357 | this.run = undefined; |
| 358 | this.bootloaderFile.value?.then(f => f.dispose()); |
| 359 | this.bootloaderFile.forget(); |
| 360 | this.closeAllConnections(); |
| 361 | } |
| 362 | |
| 363 | protected closeAllConnections() { |
| 364 | this.serverConnections.forEach(c => c.close()); |
nothing calls this directly
no test coverage detected