()
| 7840 | }; |
| 7841 | |
| 7842 | var pauseTimers = function () { |
| 7843 | // Stops all currently active measurements so that they can be resumed |
| 7844 | // if we continue in a later deferred loop from the same unit of work. |
| 7845 | var fiber = currentFiber; |
| 7846 | while (fiber) { |
| 7847 | if (fiber._debugIsCurrentlyTiming) { |
| 7848 | endFiberMark(fiber, null, null); |
| 7849 | } |
| 7850 | fiber = fiber['return']; |
| 7851 | } |
| 7852 | }; |
| 7853 | |
| 7854 | var resumeTimersRecursively = function (fiber) { |
| 7855 | if (fiber['return'] !== null) { |
no test coverage detected