()
| 7682 | }; |
| 7683 | |
| 7684 | var pauseTimers = function () { |
| 7685 | // Stops all currently active measurements so that they can be resumed |
| 7686 | // if we continue in a later deferred loop from the same unit of work. |
| 7687 | var fiber = currentFiber; |
| 7688 | while (fiber) { |
| 7689 | if (fiber._debugIsCurrentlyTiming) { |
| 7690 | endFiberMark(fiber, null, null); |
| 7691 | } |
| 7692 | fiber = fiber['return']; |
| 7693 | } |
| 7694 | }; |
| 7695 | |
| 7696 | var resumeTimersRecursively = function (fiber) { |
| 7697 | if (fiber['return'] !== null) { |
no test coverage detected