(value, source)
| 11232 | }; |
| 11233 | |
| 11234 | function createCapturedValue(value, source) { |
| 11235 | // If the value is an error, call this function immediately after it is thrown |
| 11236 | // so the stack is accurate. |
| 11237 | return { |
| 11238 | value: value, |
| 11239 | source: source, |
| 11240 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 11241 | }; |
| 11242 | } |
| 11243 | |
| 11244 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 11245 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected