(value, source)
| 11016 | }; |
| 11017 | |
| 11018 | function createCapturedValue(value, source) { |
| 11019 | // If the value is an error, call this function immediately after it is thrown |
| 11020 | // so the stack is accurate. |
| 11021 | return { |
| 11022 | value: value, |
| 11023 | source: source, |
| 11024 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 11025 | }; |
| 11026 | } |
| 11027 | |
| 11028 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 11029 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected