()
| 181 | } |
| 182 | |
| 183 | private reloadPackageMap(): void { |
| 184 | // Reload the package map in case the user modified the packages. |
| 185 | // https://github.com/Dart-Code/Dart-Code/issues/4076. |
| 186 | this.packageMap?.reload(); |
| 187 | } |
| 188 | |
| 189 | private async performReload(hotRestart: boolean, args?: { reason: string, debounce?: boolean }): Promise<any> { |
| 190 | if (!this.appHasStarted || !this.currentRunningAppId || !this.runDaemon) |
no test coverage detected