MCPcopy
hub / github.com/BetaSu/big-react / ContextItem

Interface ContextItem

packages/react-reconciler/src/fiberContext.ts:15–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13let lastContextDep: ContextItem<any> | null = null;
14
15export interface ContextItem<Value> {
16 context: ReactContext<Value>;
17 memoizedState: Value;
18 next: ContextItem<Value> | null;
19}
20
21let prevContextValue: any = null;
22const prevContextValueStack: any[] = [];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected