| 13 | let lastContextDep: ContextItem<any> | null = null; |
| 14 | |
| 15 | export interface ContextItem<Value> { |
| 16 | context: ReactContext<Value>; |
| 17 | memoizedState: Value; |
| 18 | next: ContextItem<Value> | null; |
| 19 | } |
| 20 | |
| 21 | let prevContextValue: any = null; |
| 22 | const prevContextValueStack: any[] = []; |
nothing calls this directly
no outgoing calls
no test coverage detected