(node: T)
| 962 | } |
| 963 | |
| 964 | private _getAriaSet(node: T) { |
| 965 | const key = this._getExpansionKey(node); |
| 966 | const parent = this._parents.get(key); |
| 967 | const parentKey = parent ? this._getExpansionKey(parent) : null; |
| 968 | const set = this._ariaSets.get(parentKey); |
| 969 | return set ?? [node]; |
| 970 | } |
| 971 | |
| 972 | /** |
| 973 | * Finds the parent for the given node. If this is a root node, this |
no test coverage detected