(fiber, callback, arg0, arg1, arg2, arg3, arg4)
| 19227 | return null === current ? "" : getStackByFiberInDevAndProd(current); |
| 19228 | } |
| 19229 | function runWithFiberInDEV(fiber, callback, arg0, arg1, arg2, arg3, arg4) { |
| 19230 | var previousFiber = current; |
| 19231 | ReactSharedInternals.getCurrentStack = |
| 19232 | null === fiber ? null : getCurrentFiberStackInDev; |
| 19233 | isRendering = !1; |
| 19234 | current = fiber; |
| 19235 | try { |
| 19236 | return callback(arg0, arg1, arg2, arg3, arg4); |
| 19237 | } finally { |
| 19238 | current = previousFiber; |
| 19239 | } |
| 19240 | throw Error( |
| 19241 | "runWithFiberInDEV should never be called in production. This is a bug in React." |
| 19242 | ); |
| 19243 | } |
| 19244 | function getNearestMountedFiber(fiber) { |
| 19245 | var node = fiber, |
| 19246 | nearestMounted = fiber; |
no outgoing calls
no test coverage detected
searching dependent graphs…