MCPcopy Index your code
hub / github.com/react/react / markCommitStopped

Function markCommitStopped

packages/react-reconciler/src/ReactFiberDevToolsHook.js:228–237  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

226}
227
228export function markCommitStopped(): void {
229 if (enableSchedulingProfiler) {
230 if (
231 injectedProfilingHooks !== null &&
232 typeof injectedProfilingHooks.markCommitStopped === 'function'
233 ) {
234 injectedProfilingHooks.markCommitStopped();
235 }
236 }
237}
238
239export function markComponentRenderStarted(fiber: Fiber): void {
240 if (enableSchedulingProfiler) {

Callers 2

commitRootFunction · 0.90
flushSpawnedWorkFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected