()
| 134 | } |
| 135 | |
| 136 | protected createTerminal() { |
| 137 | this.ptyTerm = new PtyTerminal(this.createTermOptions(null)); |
| 138 | this.ptyTerm.on('data', this.sendData.bind(this)); |
| 139 | this.ptyTerm.on('close', this.terminalClosed.bind(this)); |
| 140 | } |
| 141 | |
| 142 | protected createPrompt(): string { |
| 143 | return this.options.noprompt ? '' : this.options.prompt || `RTT:${this.options.port}> `; |
no test coverage detected