(ws: Workspace)
| 451 | readonly #ws: Workspace; |
| 452 | |
| 453 | constructor(ws: Workspace) { |
| 454 | super(); |
| 455 | this.#ws = ws; |
| 456 | trackStub(this); |
| 457 | } |
| 458 | |
| 459 | [Symbol.dispose](): void { |
| 460 | untrackStub(this); |
nothing calls this directly
no test coverage detected