(fiber)
| 11947 | } |
| 11948 | |
| 11949 | function popHostContext(fiber) { |
| 11950 | // Do not pop unless this Fiber provided the current context. |
| 11951 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 11952 | if (contextFiberStackCursor.current !== fiber) { |
| 11953 | return; |
| 11954 | } |
| 11955 | |
| 11956 | pop(contextStackCursor, fiber); |
| 11957 | pop(contextFiberStackCursor, fiber); |
| 11958 | } |
| 11959 | |
| 11960 | return { |
| 11961 | getHostContext: getHostContext, |
no test coverage detected