(count)
| 109 | } |
| 110 | |
| 111 | #getNodeStackIndex(count) { |
| 112 | const { stack } = this; |
| 113 | for (let i = stack.length - 1; i >= 0; i -= 2) { |
| 114 | if (!Array.isArray(stack[i]) && --count < 0) { |
| 115 | return i; |
| 116 | } |
| 117 | } |
| 118 | return -1; |
| 119 | } |
| 120 | |
| 121 | // Temporarily push properties named by string arguments given after the |
| 122 | // callback function onto this.stack, then call the callback with a |
no outgoing calls
no test coverage detected