(next: ContextNode<any>)
| 47 | } |
| 48 | |
| 49 | function pushNode(next: ContextNode<any>): void { |
| 50 | if (isPrimaryRenderer) { |
| 51 | next.context._currentValue = next.value; |
| 52 | } else { |
| 53 | next.context._currentValue2 = next.value; |
| 54 | } |
| 55 | } |
| 56 | |
| 57 | function popToNearestCommonAncestor( |
| 58 | prev: ContextNode<any>, |
no outgoing calls
no test coverage detected