(event: Event)
| 35 | // Focus this node with expanding or collapsing it. This ensures that the active node will always |
| 36 | // be visible when expanding and collapsing. |
| 37 | _toggle(event: Event): void { |
| 38 | event.stopPropagation(); |
| 39 | |
| 40 | this.recursive |
| 41 | ? this._tree.toggleDescendants(this._treeNode.data) |
| 42 | : this._tree.toggle(this._treeNode.data); |
| 43 | |
| 44 | this._tree._keyManager.focusItem(this._treeNode); |
| 45 | } |
| 46 | } |
nothing calls this directly
no test coverage detected