(label: string)
| 718 | const order: string[] = []; |
| 719 | class Owner extends Disposable { |
| 720 | add(label: string): void { |
| 721 | this._register(makeRecorder(label, order)); |
| 722 | } |
| 723 | } |
| 724 | const owner = new Owner(); |
| 725 | owner.add('a'); |
nothing calls this directly
no test coverage detected