(fiber)
| 11820 | } |
| 11821 | |
| 11822 | function popHostContext(fiber) { |
| 11823 | // Do not pop unless this Fiber provided the current context. |
| 11824 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 11825 | if (contextFiberStackCursor.current !== fiber) { |
| 11826 | return; |
| 11827 | } |
| 11828 | |
| 11829 | pop(contextStackCursor, fiber); |
| 11830 | pop(contextFiberStackCursor, fiber); |
| 11831 | } |
| 11832 | |
| 11833 | return { |
| 11834 | getHostContext: getHostContext, |
no test coverage detected