()
| 6950 | }; |
| 6951 | |
| 6952 | var pauseTimers = function () { |
| 6953 | // Stops all currently active measurements so that they can be resumed |
| 6954 | // if we continue in a later deferred loop from the same unit of work. |
| 6955 | var fiber = currentFiber; |
| 6956 | while (fiber) { |
| 6957 | if (fiber._debugIsCurrentlyTiming) { |
| 6958 | endFiberMark(fiber, null, null); |
| 6959 | } |
| 6960 | fiber = fiber['return']; |
| 6961 | } |
| 6962 | }; |
| 6963 | |
| 6964 | var resumeTimersRecursively = function (fiber) { |
| 6965 | if (fiber['return'] !== null) { |
no test coverage detected