19import type {ActivityState} from './ReactFiberActivityComponent';
20import type {SuspenseState} from './ReactFiberSuspenseComponent';
21▶import type {FunctionComponentUpdateQueue} from './ReactFiberHooks';
22import type {Transition} from 'react/src/ReactStartTransition';
23import type {
· · ·
148 SuspenseListComponent,
149 OffscreenComponent,
150▶ FunctionComponent,
151 ForwardRef,
152 MemoComponent,
· · ·
232 SelectiveHydrationException,
233 beginWork,
234▶ replayFunctionComponent,
235} from './ReactFiberBeginWork';
236import {completeWork} from './ReactFiberCompleteWork';
· · ·
414import {claimQueuedTransitionTypes} from './ReactFiberTransitionTypes';
415
416▶const PossiblyWeakMap = typeof WeakMap === 'function' ? WeakMap : Map;
417
418type ExecutionContext = number;
· · ·
454
455// When this is true, the work-in-progress fiber just suspended (or errored) and
456▶// we've yet to unwind the stack. In some cases, we may yield to the main thread
457// after this happens. If the fiber is pinged before we resume, we can retry
458// immediately instead of unwinding the stack.
+ 200 more matches in this file