(params: { workspaceFile: string })
| 28 | private workspaceFile: string; |
| 29 | |
| 30 | constructor(params: { workspaceFile: string }) { |
| 31 | this.workspaceFile = params.workspaceFile; |
| 32 | } |
| 33 | |
| 34 | write(message: JsonRpcMessage): void { |
| 35 | this.written.push(message); |
nothing calls this directly
no outgoing calls
no test coverage detected