(handler)
| 6962 | var suspenseHandlerStackCursor = createCursor(null), |
| 6963 | shellBoundary = null; |
| 6964 | function pushPrimaryTreeSuspenseHandler(handler) { |
| 6965 | var current = handler.alternate; |
| 6966 | push(suspenseStackCursor, suspenseStackCursor.current & 1); |
| 6967 | push(suspenseHandlerStackCursor, handler); |
| 6968 | null === shellBoundary && |
| 6969 | (null === current || null !== currentTreeHiddenStackCursor.current |
| 6970 | ? (shellBoundary = handler) |
| 6971 | : null !== current.memoizedState && (shellBoundary = handler)); |
| 6972 | } |
| 6973 | function pushOffscreenSuspenseHandler(fiber) { |
| 6974 | if (22 === fiber.tag) { |
| 6975 | if ( |
no test coverage detected
searching dependent graphs…