(value, source)
| 11074 | }; |
| 11075 | |
| 11076 | function createCapturedValue(value, source) { |
| 11077 | // If the value is an error, call this function immediately after it is thrown |
| 11078 | // so the stack is accurate. |
| 11079 | return { |
| 11080 | value: value, |
| 11081 | source: source, |
| 11082 | stack: getStackAddendumByWorkInProgressFiber(source) |
| 11083 | }; |
| 11084 | } |
| 11085 | |
| 11086 | var ReactFiberUnwindWork = function (hostContext, legacyContext, newContext, scheduleWork, isAlreadyFailedLegacyErrorBoundary) { |
| 11087 | var popHostContainer = hostContext.popHostContainer, |
no test coverage detected