(count = 0)
| 100 | } |
| 101 | |
| 102 | getNode(count = 0) { |
| 103 | const stackIndex = this.#getNodeStackIndex(count); |
| 104 | return stackIndex === -1 ? null : this.stack[stackIndex]; |
| 105 | } |
| 106 | |
| 107 | getParentNode(count = 0) { |
| 108 | return this.getNode(count + 1); |
no test coverage detected