* For the given node, determine the level where this node appears in the tree. * * This is intended to be used for `aria-level` but is 0-indexed.
(node: T)
| 837 | * This is intended to be used for `aria-level` but is 0-indexed. |
| 838 | */ |
| 839 | _getLevel(node: T) { |
| 840 | return this._levels.get(this._getExpansionKey(node)); |
| 841 | } |
| 842 | |
| 843 | /** |
| 844 | * For the given node, determine the size of the parent's child set. |
no test coverage detected