()
| 6822 | }; |
| 6823 | |
| 6824 | var pauseTimers = function () { |
| 6825 | // Stops all currently active measurements so that they can be resumed |
| 6826 | // if we continue in a later deferred loop from the same unit of work. |
| 6827 | var fiber = currentFiber; |
| 6828 | while (fiber) { |
| 6829 | if (fiber._debugIsCurrentlyTiming) { |
| 6830 | endFiberMark(fiber, null, null); |
| 6831 | } |
| 6832 | fiber = fiber['return']; |
| 6833 | } |
| 6834 | }; |
| 6835 | |
| 6836 | var resumeTimersRecursively = function (fiber) { |
| 6837 | if (fiber['return'] !== null) { |
no test coverage detected