(value, source)
| 11119 | }; |
| 11120 | |
| 11121 | function createCapturedValue(value, source) { |
| 11122 | // If the value is an error, call this function immediately after it is thrown |
| 11123 | // so the stack is accurate. |
| 11124 | return { |
| 11125 | value: value, |
| 11126 | source: source, |
| 11127 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 11128 | }; |
| 11129 | } |
| 11130 | |
| 11131 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 11132 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected