(response: DebugProtocol.LaunchResponse, code: number, msg: string)
| 729 | // However, send everything to the Debug Console anyways. |
| 730 | private errResponseSent = false; |
| 731 | private launchErrorResponse(response: DebugProtocol.LaunchResponse, code: number, msg: string) { |
| 732 | this.handleMsg('stderr', `Error ${code}: ` + msg.endsWith('\n') ? msg : msg + '\n'); |
| 733 | if (!this.errResponseSent) { |
| 734 | this.errResponseSent = true; |
| 735 | this.sendErrorResponse(response, code, msg); |
| 736 | } |
| 737 | } |
| 738 | |
| 739 | // |
| 740 | // Following function should never exist. The only way ST tools work is if the are run from the dir. where the |
no test coverage detected