(fiber)
| 11308 | } |
| 11309 | |
| 11310 | function popHostContext(fiber) { |
| 11311 | // Do not pop unless this Fiber provided the current context. |
| 11312 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 11313 | if (contextFiberStackCursor.current !== fiber) { |
| 11314 | return; |
| 11315 | } |
| 11316 | |
| 11317 | pop(contextStackCursor, fiber); |
| 11318 | pop(contextFiberStackCursor, fiber); |
| 11319 | } |
| 11320 | |
| 11321 | return { |
| 11322 | getHostContext: getHostContext, |
no test coverage detected