()
| 140 | } |
| 141 | |
| 142 | protected createPrompt(): string { |
| 143 | return this.options.noprompt ? '' : this.options.prompt || `RTT:${this.options.port}> `; |
| 144 | } |
| 145 | |
| 146 | protected static createTermName(options: RTTConsoleDecoderOpts, existing: string | null): string { |
| 147 | const suffix = options.type === 'binary' ? `enc:${getBinaryEncoding(options.encoding)}` : options.type; |