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

Function stopPhaseTimer

code/event-handlers/public/app.js:7056–7068  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7054}
7055
7056function stopPhaseTimer() {
7057 if (enableUserTimingAPI) {
7058 if (!supportsUserTiming) {
7059 return;
7060 }
7061 if (currentPhase !== null && currentPhaseFiber !== null) {
7062 var warning$$1 = hasScheduledUpdateInCurrentPhase ? 'Scheduled a cascading update' : null;
7063 endFiberMark(currentPhaseFiber, currentPhase, warning$$1);
7064 }
7065 currentPhase = null;
7066 currentPhaseFiber = null;
7067 }
7068}
7069
7070function startWorkLoopTimer(nextUnitOfWork) {
7071 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