(fiber, context, didChange)
| 11875 | } |
| 11876 | |
| 11877 | function pushTopLevelContextObject(fiber, context, didChange) { |
| 11878 | { |
| 11879 | if (contextStackCursor.current !== emptyContextObject) { |
| 11880 | throw new Error('Unexpected context found on stack. ' + 'This error is likely caused by a bug in React. Please file an issue.'); |
| 11881 | } |
| 11882 | |
| 11883 | push(contextStackCursor, context, fiber); |
| 11884 | push(didPerformWorkStackCursor, didChange, fiber); |
| 11885 | } |
| 11886 | } |
| 11887 | |
| 11888 | function processChildContext(fiber, type, parentContext) { |
| 11889 | { |
no test coverage detected
searching dependent graphs…