(fiber)
| 3993 | pop(rootInstanceStackCursor); |
| 3994 | } |
| 3995 | function pushHostContext(fiber) { |
| 3996 | null !== fiber.memoizedState && push(hostTransitionProviderCursor, fiber); |
| 3997 | var context = contextStackCursor.current; |
| 3998 | var JSCompiler_inline_result = getChildHostContextProd(context, fiber.type); |
| 3999 | context !== JSCompiler_inline_result && |
| 4000 | (push(contextFiberStackCursor, fiber), |
| 4001 | push(contextStackCursor, JSCompiler_inline_result)); |
| 4002 | } |
| 4003 | function popHostContext(fiber) { |
| 4004 | contextFiberStackCursor.current === fiber && |
| 4005 | (pop(contextStackCursor), pop(contextFiberStackCursor)); |
no test coverage detected
searching dependent graphs…