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