(value, source)
| 10981 | }; |
| 10982 | |
| 10983 | function createCapturedValue(value, source) { |
| 10984 | // If the value is an error, call this function immediately after it is thrown |
| 10985 | // so the stack is accurate. |
| 10986 | return { |
| 10987 | value: value, |
| 10988 | source: source, |
| 10989 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 10990 | }; |
| 10991 | } |
| 10992 | |
| 10993 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 10994 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected