(fiber)
| 11271 | } |
| 11272 | |
| 11273 | function popHostContext(fiber) { |
| 11274 | // Do not pop unless this Fiber provided the current context. |
| 11275 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 11276 | if (contextFiberStackCursor.current !== fiber) { |
| 11277 | return; |
| 11278 | } |
| 11279 | |
| 11280 | pop(contextStackCursor, fiber); |
| 11281 | pop(contextFiberStackCursor, fiber); |
| 11282 | } |
| 11283 | |
| 11284 | return { |
| 11285 | getHostContext: getHostContext, |
no test coverage detected