* Adds the specified node component to the tree's internal registry. * * This primarily facilitates keyboard navigation.
(node: CdkTreeNode<T, K>)
| 821 | * This primarily facilitates keyboard navigation. |
| 822 | */ |
| 823 | _registerNode(node: CdkTreeNode<T, K>) { |
| 824 | this._nodes.value.set(this._getExpansionKey(node.data), node); |
| 825 | this._nodes.next(this._nodes.value); |
| 826 | } |
| 827 | |
| 828 | /** Removes the specified node component from the tree's internal registry. */ |
| 829 | _unregisterNode(node: CdkTreeNode<T, K>) { |
no test coverage detected