* check if this node contains another node
(node: Node)
| 656 | * check if this node contains another node |
| 657 | */ |
| 658 | contains(node: Node): boolean { |
| 659 | return contains(this, node) |
| 660 | } |
| 661 | |
| 662 | /** |
| 663 | * get the parent node at a specific depth |
no test coverage detected