(next: ContextNode<any>)
| 94 | } |
| 95 | |
| 96 | function pushAllNext(next: ContextNode<any>): void { |
| 97 | const parentNext = next.parent; |
| 98 | if (parentNext !== null) { |
| 99 | pushAllNext(parentNext); |
| 100 | } |
| 101 | pushNode(next); |
| 102 | } |
| 103 | |
| 104 | function popPreviousToCommonLevel( |
| 105 | prev: ContextNode<any>, |
no test coverage detected