(value, source)
| 10342 | }; |
| 10343 | |
| 10344 | function createCapturedValue(value, source) { |
| 10345 | // If the value is an error, call this function immediately after it is thrown |
| 10346 | // so the stack is accurate. |
| 10347 | return { |
| 10348 | value: value, |
| 10349 | source: source, |
| 10350 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 10351 | }; |
| 10352 | } |
| 10353 | |
| 10354 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 10355 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected