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

Function stopPhaseTimer

code/composition/public/app.js:7864–7876  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7862}
7863
7864function stopPhaseTimer() {
7865 if (enableUserTimingAPI) {
7866 if (!supportsUserTiming) {
7867 return;
7868 }
7869 if (currentPhase !== null && currentPhaseFiber !== null) {
7870 var warning$$1 = hasScheduledUpdateInCurrentPhase ? 'Scheduled a cascading update' : null;
7871 endFiberMark(currentPhaseFiber, currentPhase, warning$$1);
7872 }
7873 currentPhase = null;
7874 currentPhaseFiber = null;
7875 }
7876}
7877
7878function startWorkLoopTimer(nextUnitOfWork) {
7879 if (enableUserTimingAPI) {

Callers 8

callComponentWillMountFunction · 0.70
resumeMountClassInstanceFunction · 0.70
updateClassInstanceFunction · 0.70
commitLifeCyclesFunction · 0.70
processChildContextFunction · 0.70

Calls 1

endFiberMarkFunction · 0.70

Tested by

no test coverage detected