@@ -605,9 +605,7 @@ function commitRoot(root: FiberRoot, finishedWork: Fiber): void {
605
605
const updateExpirationTimeBeforeCommit = finishedWork . expirationTime ;
606
606
const childExpirationTimeBeforeCommit = finishedWork . childExpirationTime ;
607
607
const earliestRemainingTimeBeforeCommit =
608
- updateExpirationTimeBeforeCommit === NoWork ||
609
- ( childExpirationTimeBeforeCommit !== NoWork &&
610
- childExpirationTimeBeforeCommit > updateExpirationTimeBeforeCommit )
608
+ childExpirationTimeBeforeCommit > updateExpirationTimeBeforeCommit
611
609
? childExpirationTimeBeforeCommit
612
610
: updateExpirationTimeBeforeCommit ;
613
611
markCommittedPriorityLevels ( root , earliestRemainingTimeBeforeCommit ) ;
@@ -798,9 +796,7 @@ function commitRoot(root: FiberRoot, finishedWork: Fiber): void {
798
796
const updateExpirationTimeAfterCommit = finishedWork . expirationTime ;
799
797
const childExpirationTimeAfterCommit = finishedWork . childExpirationTime ;
800
798
const earliestRemainingTimeAfterCommit =
801
- updateExpirationTimeAfterCommit === NoWork ||
802
- ( childExpirationTimeAfterCommit !== NoWork &&
803
- childExpirationTimeAfterCommit > updateExpirationTimeAfterCommit )
799
+ childExpirationTimeAfterCommit > updateExpirationTimeAfterCommit
804
800
? childExpirationTimeAfterCommit
805
801
: updateExpirationTimeAfterCommit ;
806
802
if ( earliestRemainingTimeAfterCommit === NoWork ) {
@@ -841,10 +837,7 @@ function commitRoot(root: FiberRoot, finishedWork: Fiber): void {
841
837
// Only decrement the pending interaction count if we're done.
842
838
// If there's still work at the current priority,
843
839
// That indicates that we are waiting for suspense data.
844
- if (
845
- earliestRemainingTimeAfterCommit === NoWork ||
846
- scheduledExpirationTime > earliestRemainingTimeAfterCommit
847
- ) {
840
+ if ( scheduledExpirationTime > earliestRemainingTimeAfterCommit ) {
848
841
pendingInteractionMap . delete ( scheduledExpirationTime ) ;
849
842
850
843
scheduledInteractions . forEach ( interaction => {
@@ -904,18 +897,10 @@ function resetChildExpirationTime(
904
897
while ( child !== null ) {
905
898
const childUpdateExpirationTime = child . expirationTime ;
906
899
const childChildExpirationTime = child . childExpirationTime ;
907
- if (
908
- newChildExpirationTime === NoWork ||
909
- ( childUpdateExpirationTime !== NoWork &&
910
- childUpdateExpirationTime > newChildExpirationTime )
911
- ) {
900
+ if ( childUpdateExpirationTime > newChildExpirationTime ) {
912
901
newChildExpirationTime = childUpdateExpirationTime ;
913
902
}
914
- if (
915
- newChildExpirationTime === NoWork ||
916
- ( childChildExpirationTime !== NoWork &&
917
- childChildExpirationTime > newChildExpirationTime )
918
- ) {
903
+ if ( childChildExpirationTime > newChildExpirationTime ) {
919
904
newChildExpirationTime = childChildExpirationTime ;
920
905
}
921
906
if ( shouldBubbleActualDurations ) {
@@ -931,18 +916,10 @@ function resetChildExpirationTime(
931
916
while ( child !== null ) {
932
917
const childUpdateExpirationTime = child . expirationTime ;
933
918
const childChildExpirationTime = child . childExpirationTime ;
934
- if (
935
- newChildExpirationTime === NoWork ||
936
- ( childUpdateExpirationTime !== NoWork &&
937
- childUpdateExpirationTime > newChildExpirationTime )
938
- ) {
919
+ if ( childUpdateExpirationTime > newChildExpirationTime ) {
939
920
newChildExpirationTime = childUpdateExpirationTime ;
940
921
}
941
- if (
942
- newChildExpirationTime === NoWork ||
943
- ( childChildExpirationTime !== NoWork &&
944
- childChildExpirationTime > newChildExpirationTime )
945
- ) {
922
+ if ( childChildExpirationTime > newChildExpirationTime ) {
946
923
newChildExpirationTime = childChildExpirationTime ;
947
924
}
948
925
child = child . sibling ;
@@ -1697,18 +1674,11 @@ function scheduleWorkToRoot(fiber: Fiber, expirationTime): FiberRoot | null {
1697
1674
}
1698
1675
1699
1676
// Update the source fiber's expiration time
1700
- if (
1701
- fiber . expirationTime === NoWork ||
1702
- fiber . expirationTime < expirationTime
1703
- ) {
1677
+ if ( fiber . expirationTime < expirationTime ) {
1704
1678
fiber . expirationTime = expirationTime ;
1705
1679
}
1706
1680
let alternate = fiber . alternate ;
1707
- if (
1708
- alternate !== null &&
1709
- ( alternate . expirationTime === NoWork ||
1710
- alternate . expirationTime < expirationTime )
1711
- ) {
1681
+ if ( alternate !== null && alternate . expirationTime < expirationTime ) {
1712
1682
alternate . expirationTime = expirationTime ;
1713
1683
}
1714
1684
// Walk the parent path to the root and update the child expiration time.
@@ -1719,22 +1689,17 @@ function scheduleWorkToRoot(fiber: Fiber, expirationTime): FiberRoot | null {
1719
1689
} else {
1720
1690
while ( node !== null ) {
1721
1691
alternate = node . alternate ;
1722
- if (
1723
- node . childExpirationTime === NoWork ||
1724
- node . childExpirationTime < expirationTime
1725
- ) {
1692
+ if ( node . childExpirationTime < expirationTime ) {
1726
1693
node . childExpirationTime = expirationTime ;
1727
1694
if (
1728
1695
alternate !== null &&
1729
- ( alternate . childExpirationTime === NoWork ||
1730
- alternate . childExpirationTime < expirationTime )
1696
+ alternate . childExpirationTime < expirationTime
1731
1697
) {
1732
1698
alternate . childExpirationTime = expirationTime ;
1733
1699
}
1734
1700
} else if (
1735
1701
alternate !== null &&
1736
- ( alternate . childExpirationTime === NoWork ||
1737
- alternate . childExpirationTime < expirationTime )
1702
+ alternate . childExpirationTime < expirationTime
1738
1703
) {
1739
1704
alternate . childExpirationTime = expirationTime ;
1740
1705
}
@@ -2086,10 +2051,7 @@ function addRootToSchedule(root: FiberRoot, expirationTime: ExpirationTime) {
2086
2051
} else {
2087
2052
// This root is already scheduled, but its priority may have increased.
2088
2053
const remainingExpirationTime = root . expirationTime ;
2089
- if (
2090
- remainingExpirationTime === NoWork ||
2091
- expirationTime > remainingExpirationTime
2092
- ) {
2054
+ if ( expirationTime > remainingExpirationTime ) {
2093
2055
// Update the priority.
2094
2056
root . expirationTime = expirationTime ;
2095
2057
}
@@ -2138,10 +2100,7 @@ function findHighestPriorityRoot() {
2138
2100
}
2139
2101
root = previousScheduledRoot . nextScheduledRoot ;
2140
2102
} else {
2141
- if (
2142
- highestPriorityWork === NoWork ||
2143
- remainingExpirationTime > highestPriorityWork
2144
- ) {
2103
+ if ( remainingExpirationTime > highestPriorityWork ) {
2145
2104
// Update the priority, if it's higher
2146
2105
highestPriorityWork = remainingExpirationTime ;
2147
2106
highestPriorityRoot = root ;
@@ -2225,8 +2184,7 @@ function performWork(minExpirationTime: ExpirationTime, isYieldy: boolean) {
2225
2184
while (
2226
2185
nextFlushedRoot !== null &&
2227
2186
nextFlushedExpirationTime !== NoWork &&
2228
- ( minExpirationTime === NoWork ||
2229
- minExpirationTime <= nextFlushedExpirationTime ) &&
2187
+ minExpirationTime <= nextFlushedExpirationTime &&
2230
2188
! ( didYield && currentRendererTime > nextFlushedExpirationTime )
2231
2189
) {
2232
2190
performWorkOnRoot (
@@ -2242,8 +2200,7 @@ function performWork(minExpirationTime: ExpirationTime, isYieldy: boolean) {
2242
2200
while (
2243
2201
nextFlushedRoot !== null &&
2244
2202
nextFlushedExpirationTime !== NoWork &&
2245
- ( minExpirationTime === NoWork ||
2246
- minExpirationTime <= nextFlushedExpirationTime )
2203
+ minExpirationTime <= nextFlushedExpirationTime
2247
2204
) {
2248
2205
performWorkOnRoot ( nextFlushedRoot , nextFlushedExpirationTime , false ) ;
2249
2206
findHighestPriorityRoot ( ) ;
0 commit comments