(ws: Workspace)
| 555 | readonly #ws: Workspace; |
| 556 | |
| 557 | constructor(ws: Workspace) { |
| 558 | super(); |
| 559 | this.#ws = ws; |
| 560 | trackStub(this); |
| 561 | } |
| 562 | |
| 563 | [Symbol.dispose](): void { |
| 564 | untrackStub(this); |
nothing calls this directly
no test coverage detected