()
| 7580 | }; |
| 7581 | |
| 7582 | var clearPendingPhaseMeasurement = function () { |
| 7583 | if (currentPhase !== null && currentPhaseFiber !== null) { |
| 7584 | clearFiberMark(currentPhaseFiber, currentPhase); |
| 7585 | } |
| 7586 | currentPhaseFiber = null; |
| 7587 | currentPhase = null; |
| 7588 | hasScheduledUpdateInCurrentPhase = false; |
| 7589 | }; |
| 7590 | |
| 7591 | var pauseTimers = function () { |
| 7592 | // Stops all currently active measurements so that they can be resumed |
no test coverage detected