()
| 6813 | }; |
| 6814 | |
| 6815 | var clearPendingPhaseMeasurement = function () { |
| 6816 | if (currentPhase !== null && currentPhaseFiber !== null) { |
| 6817 | clearFiberMark(currentPhaseFiber, currentPhase); |
| 6818 | } |
| 6819 | currentPhaseFiber = null; |
| 6820 | currentPhase = null; |
| 6821 | hasScheduledUpdateInCurrentPhase = false; |
| 6822 | }; |
| 6823 | |
| 6824 | var pauseTimers = function () { |
| 6825 | // Stops all currently active measurements so that they can be resumed |
no test coverage detected