(fiber)
| 10525 | } |
| 10526 | } |
| 10527 | function cancelWorkTimer(fiber) { |
| 10528 | { |
| 10529 | if (!supportsUserTiming || shouldIgnoreFiber(fiber)) { |
| 10530 | return; |
| 10531 | } // Remember we shouldn't complete measurement for this fiber. |
| 10532 | // Otherwise flamechart will be deep even for small updates. |
| 10533 | |
| 10534 | |
| 10535 | fiber._debugIsCurrentlyTiming = false; |
| 10536 | clearFiberMark(fiber, null); |
| 10537 | } |
| 10538 | } |
| 10539 | function stopWorkTimer(fiber) { |
| 10540 | { |
| 10541 | if (!supportsUserTiming || shouldIgnoreFiber(fiber)) { |
no test coverage detected