()
| 440 | } |
| 441 | |
| 442 | export function markRenderYielded(): void { |
| 443 | if (enableSchedulingProfiler) { |
| 444 | if ( |
| 445 | injectedProfilingHooks !== null && |
| 446 | typeof injectedProfilingHooks.markRenderYielded === 'function' |
| 447 | ) { |
| 448 | injectedProfilingHooks.markRenderYielded(); |
| 449 | } |
| 450 | } |
| 451 | } |
| 452 | |
| 453 | export function markRenderStopped(): void { |
| 454 | if (enableSchedulingProfiler) { |
no outgoing calls
no test coverage detected