()
| 1499 | } |
| 1500 | |
| 1501 | function getCurrentFiberStackInDev() { |
| 1502 | { |
| 1503 | if (current === null) { |
| 1504 | return ''; |
| 1505 | } // Safe because if current fiber exists, we are reconciling, |
| 1506 | // and it is guaranteed to be the work-in-progress version. |
| 1507 | |
| 1508 | |
| 1509 | return getStackByFiberInDevAndProd(current); |
| 1510 | } |
| 1511 | } |
| 1512 | |
| 1513 | function resetCurrentFiber() { |
| 1514 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…