()
| 577 | } |
| 578 | |
| 579 | export function recordCommitEndTime(): void { |
| 580 | if (!enableProfilerTimer) { |
| 581 | return; |
| 582 | } |
| 583 | commitEndTime = now(); |
| 584 | } |
| 585 | |
| 586 | export function startProfilerTimer(fiber: Fiber): void { |
| 587 | if (!enableProfilerTimer) { |
no test coverage detected