(type: string, msg: string)
| 110 | } |
| 111 | |
| 112 | protected handleMsg(type: string, msg: string) { |
| 113 | if (type == "target") |
| 114 | type = "stdout"; |
| 115 | if (type == "log") |
| 116 | type = "stderr"; |
| 117 | this.sendEvent(new OutputEvent(msg, type)); |
| 118 | } |
| 119 | |
| 120 | protected handleBreakpoint(info: MINode) { |
| 121 | const event = new StoppedEvent("breakpoint", parseInt(info.record("thread-id"))); |
no outgoing calls
no test coverage detected