(root, boundary, errorInfo)
| 8707 | } |
| 8708 | } |
| 8709 | function logCaughtError(root, boundary, errorInfo) { |
| 8710 | try { |
| 8711 | var onCaughtError = root.onCaughtError; |
| 8712 | onCaughtError(errorInfo.value, { |
| 8713 | componentStack: errorInfo.stack, |
| 8714 | errorBoundary: 1 === boundary.tag ? boundary.stateNode : null |
| 8715 | }); |
| 8716 | } catch (e$69) { |
| 8717 | setTimeout(function () { |
| 8718 | throw e$69; |
| 8719 | }); |
| 8720 | } |
| 8721 | } |
| 8722 | function createRootErrorUpdate(root, errorInfo, lane) { |
| 8723 | lane = createUpdate(lane); |
| 8724 | lane.tag = 3; |
no test coverage detected
searching dependent graphs…