(root, errorInfo)
| 8697 | reportGlobalError(error); |
| 8698 | } |
| 8699 | function logUncaughtError(root, errorInfo) { |
| 8700 | try { |
| 8701 | var onUncaughtError = root.onUncaughtError; |
| 8702 | onUncaughtError(errorInfo.value, { componentStack: errorInfo.stack }); |
| 8703 | } catch (e$68) { |
| 8704 | setTimeout(function () { |
| 8705 | throw e$68; |
| 8706 | }); |
| 8707 | } |
| 8708 | } |
| 8709 | function logCaughtError(root, boundary, errorInfo) { |
| 8710 | try { |
| 8711 | var onCaughtError = root.onCaughtError; |
no test coverage detected
searching dependent graphs…