()
| 7462 | }; |
| 7463 | |
| 7464 | var pauseTimers = function () { |
| 7465 | // Stops all currently active measurements so that they can be resumed |
| 7466 | // if we continue in a later deferred loop from the same unit of work. |
| 7467 | var fiber = currentFiber; |
| 7468 | while (fiber) { |
| 7469 | if (fiber._debugIsCurrentlyTiming) { |
| 7470 | endFiberMark(fiber, null, null); |
| 7471 | } |
| 7472 | fiber = fiber['return']; |
| 7473 | } |
| 7474 | }; |
| 7475 | |
| 7476 | var resumeTimersRecursively = function (fiber) { |
| 7477 | if (fiber['return'] !== null) { |
no test coverage detected