MCPcopy Create free account
hub / github.com/microsoft/SandDance / resumeTimersRecursively

Function resumeTimersRecursively

docs/external/js/react-dom.development.js:10478–10486  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

10476 };
10477
10478 var resumeTimersRecursively = function (fiber) {
10479 if (fiber.return !== null) {
10480 resumeTimersRecursively(fiber.return);
10481 }
10482
10483 if (fiber._debugIsCurrentlyTiming) {
10484 beginFiberMark(fiber, null);
10485 }
10486 };
10487
10488 var resumeTimers = function () {
10489 // 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