(fiber)
| 18156 | } |
| 18157 | |
| 18158 | function popHostContext(fiber) { |
| 18159 | // Do not pop unless this Fiber provided the current context. |
| 18160 | // pushHostContext() only pushes Fibers that provide unique contexts. |
| 18161 | if (contextFiberStackCursor.current !== fiber) { |
| 18162 | return; |
| 18163 | } |
| 18164 | |
| 18165 | pop(contextStackCursor$1, fiber); |
| 18166 | pop(contextFiberStackCursor, fiber); |
| 18167 | } |
| 18168 | |
| 18169 | var DefaultSuspenseContext = 0; // The Suspense Context is split into two parts. The lower bits is |
| 18170 | // inherited deeply down the subtree. The upper bits only affect |
no test coverage detected