(prev: ContextNode<any>)
| 39 | let currentActiveSnapshot: ContextSnapshot = null; |
| 40 | |
| 41 | function popNode(prev: ContextNode<any>): void { |
| 42 | if (isPrimaryRenderer) { |
| 43 | prev.context._currentValue = prev.parentValue; |
| 44 | } else { |
| 45 | prev.context._currentValue2 = prev.parentValue; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | function pushNode(next: ContextNode<any>): void { |
| 50 | if (isPrimaryRenderer) { |
no outgoing calls
no test coverage detected