(params: { updates: any[]; loadSession: boolean })
| 109 | private sessionId = 'sess-branch'; |
| 110 | |
| 111 | constructor(params: { updates: any[]; loadSession: boolean }) { |
| 112 | this.updates = params.updates; |
| 113 | this.loadSession = params.loadSession; |
| 114 | } |
| 115 | |
| 116 | write(message: JsonRpcMessage): void { |
| 117 | this.written.push(message); |
nothing calls this directly
no outgoing calls
no test coverage detected