(root, errorInfo, lane)
| 8720 | } |
| 8721 | } |
| 8722 | function createRootErrorUpdate(root, errorInfo, lane) { |
| 8723 | lane = createUpdate(lane); |
| 8724 | lane.tag = 3; |
| 8725 | lane.payload = { element: null }; |
| 8726 | lane.callback = function () { |
| 8727 | logUncaughtError(root, errorInfo); |
| 8728 | }; |
| 8729 | return lane; |
| 8730 | } |
| 8731 | function createClassErrorUpdate(lane) { |
| 8732 | lane = createUpdate(lane); |
| 8733 | lane.tag = 3; |
no test coverage detected
searching dependent graphs…