()
| 7817 | } |
| 7818 | |
| 7819 | function stopPhaseTimer() { |
| 7820 | if (enableUserTimingAPI) { |
| 7821 | if (!supportsUserTiming) { |
| 7822 | return; |
| 7823 | } |
| 7824 | if (currentPhase !== null && currentPhaseFiber !== null) { |
| 7825 | var warning$$1 = hasScheduledUpdateInCurrentPhase ? 'Scheduled a cascading update' : null; |
| 7826 | endFiberMark(currentPhaseFiber, currentPhase, warning$$1); |
| 7827 | } |
| 7828 | currentPhase = null; |
| 7829 | currentPhaseFiber = null; |
| 7830 | } |
| 7831 | } |
| 7832 | |
| 7833 | function startWorkLoopTimer(nextUnitOfWork) { |
| 7834 | if (enableUserTimingAPI) { |
no test coverage detected