(fiber, context, didChange)
| 10902 | } |
| 10903 | |
| 10904 | function pushTopLevelContextObject(fiber, context, didChange) { |
| 10905 | { |
| 10906 | if (!(contextStackCursor.current === emptyContextObject)) { |
| 10907 | { |
| 10908 | throw Error( "Unexpected context found on stack. This error is likely caused by a bug in React. Please file an issue." ); |
| 10909 | } |
| 10910 | } |
| 10911 | |
| 10912 | push(contextStackCursor, context, fiber); |
| 10913 | push(didPerformWorkStackCursor, didChange, fiber); |
| 10914 | } |
| 10915 | } |
| 10916 | |
| 10917 | function processChildContext(fiber, type, parentContext) { |
| 10918 | { |
no test coverage detected