(fiber)
| 12040 | } |
| 12041 | |
| 12042 | function popHostContext(fiber) { |
| 12043 | // Do not pop unless this Fiber provided the current context. |
| 12044 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 12045 | if (contextFiberStackCursor.current !== fiber) { |
| 12046 | return; |
| 12047 | } |
| 12048 | |
| 12049 | pop(contextStackCursor, fiber); |
| 12050 | pop(contextFiberStackCursor, fiber); |
| 12051 | } |
| 12052 | |
| 12053 | return { |
| 12054 | getHostContext: getHostContext, |
no test coverage detected