(msg: string)
| 1034 | } |
| 1035 | |
| 1036 | public serverConsoleLog(msg: string) { |
| 1037 | const pid = this.miDebugger && this.miDebugger.pid > 0 ? this.miDebugger.pid : process.pid; |
| 1038 | ServerConsoleLog(`${this.args.name}: ` + msg, pid); |
| 1039 | } |
| 1040 | |
| 1041 | protected async customRequest(command: string, response: DebugProtocol.Response, args: any) { |
| 1042 | const retFunc = () => { |
no test coverage detected