(private readonly runner: RunnerLike)
| 228 | } |
| 229 | class ShellRPCServer extends RpcTarget implements ShellRPC { |
| 230 | constructor(private readonly runner: RunnerLike) { |
| 231 | super(); |
| 232 | trackStub(this); |
| 233 | } |
| 234 | |
| 235 | [Symbol.dispose](): void { |
| 236 | untrackStub(this); |
nothing calls this directly
no test coverage detected