* compare the position of this node and another node * * - 16 thisNode contains otherNode * - 8 thisNode contained_by otherNode * - 2 thisNode before or after otherNode * - 0 thisNode same as otherNode
(otherNode: Node)
| 675 | * - 0 thisNode same as otherNode |
| 676 | */ |
| 677 | comparePosition(otherNode: Node) { |
| 678 | return comparePosition(this, otherNode) |
| 679 | } |
| 680 | |
| 681 | /** |
| 682 | * get next sibling node |
nothing calls this directly
no test coverage detected