MCPcopy Create free account
hub / github.com/reactjs/react-rails / resumeTimersRecursively

Function resumeTimersRecursively

lib/assets/react-source/development/react.js:14050–14058  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

14048 };
14049
14050 var resumeTimersRecursively = function (fiber) {
14051 if (fiber.return !== null) {
14052 resumeTimersRecursively(fiber.return);
14053 }
14054
14055 if (fiber._debugIsCurrentlyTiming) {
14056 beginFiberMark(fiber, null);
14057 }
14058 };
14059
14060 var resumeTimers = function () {
14061 // Resumes all measurements that were active during the last deferred loop.

Callers 1

resumeTimersFunction · 0.85

Calls 1

beginFiberMarkFunction · 0.85

Tested by

no test coverage detected