(
protected context: vscode.ExtensionContext,
public options: RTTConsoleDecoderOpts,
src: SocketRTTSource)
| 19 | } |
| 20 | |
| 21 | constructor( |
| 22 | protected context: vscode.ExtensionContext, |
| 23 | public options: RTTConsoleDecoderOpts, |
| 24 | src: SocketRTTSource) { |
| 25 | this.ptyOptions = this.createTermOptions(null); |
| 26 | this.createTerminal(); |
| 27 | this.sanitizeEncodings(this.options); |
| 28 | this.connectToSource(src); |
| 29 | this.openLogFile(); |
| 30 | } |
| 31 | |
| 32 | private connectToSource(src: SocketRTTSource) { |
| 33 | this.hrTimer = new HrTimer(); |
nothing calls this directly
no test coverage detected