()
| 7589 | }; |
| 7590 | |
| 7591 | var pauseTimers = function () { |
| 7592 | // Stops all currently active measurements so that they can be resumed |
| 7593 | // if we continue in a later deferred loop from the same unit of work. |
| 7594 | var fiber = currentFiber; |
| 7595 | while (fiber) { |
| 7596 | if (fiber._debugIsCurrentlyTiming) { |
| 7597 | endFiberMark(fiber, null, null); |
| 7598 | } |
| 7599 | fiber = fiber['return']; |
| 7600 | } |
| 7601 | }; |
| 7602 | |
| 7603 | var resumeTimersRecursively = function (fiber) { |
| 7604 | if (fiber['return'] !== null) { |
no test coverage detected