()
| 6913 | }; |
| 6914 | |
| 6915 | var pauseTimers = function () { |
| 6916 | // Stops all currently active measurements so that they can be resumed |
| 6917 | // if we continue in a later deferred loop from the same unit of work. |
| 6918 | var fiber = currentFiber; |
| 6919 | while (fiber) { |
| 6920 | if (fiber._debugIsCurrentlyTiming) { |
| 6921 | endFiberMark(fiber, null, null); |
| 6922 | } |
| 6923 | fiber = fiber['return']; |
| 6924 | } |
| 6925 | }; |
| 6926 | |
| 6927 | var resumeTimersRecursively = function (fiber) { |
| 6928 | if (fiber['return'] !== null) { |
no test coverage detected