* Determines the value for `aria-expanded`. * * For non-expandable nodes, this is `null`.
()
| 1359 | * For non-expandable nodes, this is `null`. |
| 1360 | */ |
| 1361 | _getAriaExpanded(): string | null { |
| 1362 | if (!this._isExpandable()) { |
| 1363 | return null; |
| 1364 | } |
| 1365 | return String(this.isExpanded); |
| 1366 | } |
| 1367 | |
| 1368 | /** |
| 1369 | * Determines the size of this node's parent's child set. |
nothing calls this directly
no test coverage detected