(response: DebugProtocol.Response, codeOrMessage: number | DebugProtocol.Message, format?: string, variables?: any, dest?: any)
| 284 | |
| 285 | // tslint:disable-next-line: max-line-length |
| 286 | public sendErrorResponsePub(response: DebugProtocol.Response, codeOrMessage: number | DebugProtocol.Message, format?: string, variables?: any, dest?: any): void { |
| 287 | this.sendErrorResponse(response, codeOrMessage, format, variables, dest); |
| 288 | } |
| 289 | |
| 290 | protected initDebugger() { |
| 291 | this.miDebugger.on('quit', this.quitEvent.bind(this)); |
no outgoing calls
no test coverage detected