(ws: Workspace)
| 375 | readonly #ws: Workspace; |
| 376 | |
| 377 | constructor(ws: Workspace) { |
| 378 | super(); |
| 379 | this.#ws = ws; |
| 380 | trackStub(this); |
| 381 | } |
| 382 | |
| 383 | [Symbol.dispose](): void { |
| 384 | untrackStub(this); |
nothing calls this directly
no test coverage detected