(data: string | Buffer)
| 112 | } |
| 113 | |
| 114 | public sendToBackend(data: string | Buffer) { |
| 115 | if (this.toBackend) { |
| 116 | this.toBackend.write(data.toString()); |
| 117 | this.toBackend.uncork(); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | public logData(data: Buffer | string) { |
| 122 | GDBServerConsole.logDataStatic(this.ptyTerm, data); |
no test coverage detected