MCPcopy Index your code
hub / github.com/krasimir/react-in-patterns / resumeTimersRecursively

Function resumeTimersRecursively

code/composition/public/app.js:7741–7748  ·  view source on GitHub ↗
(fiber)

Source from the content-addressed store, hash-verified

7739};
7740
7741var resumeTimersRecursively = function (fiber) {
7742 if (fiber['return'] !== null) {
7743 resumeTimersRecursively(fiber['return']);
7744 }
7745 if (fiber._debugIsCurrentlyTiming) {
7746 beginFiberMark(fiber, null);
7747 }
7748};
7749
7750var resumeTimers = function () {
7751 // Resumes all measurements that were active during the last deferred loop.

Callers 1

resumeTimersFunction · 0.70

Calls 1

beginFiberMarkFunction · 0.70

Tested by

no test coverage detected