()
| 151 | } |
| 152 | |
| 153 | ngOnDestroy() { |
| 154 | if (this.parent() instanceof TreeItemGroup) { |
| 155 | (this.parent() as TreeItemGroup<V>)._unregister(this); |
| 156 | } |
| 157 | this.tree()._collection.unregister(this); |
| 158 | } |
| 159 | |
| 160 | _register(group: TreeItemGroup<V>) { |
| 161 | this._group.set(group); |
nothing calls this directly
no test coverage detected