()
| 7718 | }; |
| 7719 | |
| 7720 | var clearPendingPhaseMeasurement = function () { |
| 7721 | if (currentPhase !== null && currentPhaseFiber !== null) { |
| 7722 | clearFiberMark(currentPhaseFiber, currentPhase); |
| 7723 | } |
| 7724 | currentPhaseFiber = null; |
| 7725 | currentPhase = null; |
| 7726 | hasScheduledUpdateInCurrentPhase = false; |
| 7727 | }; |
| 7728 | |
| 7729 | var pauseTimers = function () { |
| 7730 | // Stops all currently active measurements so that they can be resumed |
no test coverage detected