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