File tree 1 file changed +3
-9
lines changed
1 file changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -192,8 +192,6 @@ export function updateDirtyFlag(
192
192
if ( checkDirty ( sub . deps ! ) ) {
193
193
sub . flags = flags | SubscriberFlags . Dirty
194
194
return true
195
- } else if ( sub . flags & SubscriberFlags . Dirty ) {
196
- return true
197
195
} else {
198
196
sub . flags = flags & ~ SubscriberFlags . PendingComputed
199
197
return false
@@ -204,11 +202,7 @@ export function processComputedUpdate(
204
202
computed : Computed ,
205
203
flags : SubscriberFlags ,
206
204
) : void {
207
- if (
208
- flags & SubscriberFlags . Dirty ||
209
- checkDirty ( computed . deps ! ) ||
210
- computed . flags & SubscriberFlags . Dirty
211
- ) {
205
+ if ( flags & SubscriberFlags . Dirty || checkDirty ( computed . deps ! ) ) {
212
206
if ( computed . update ( ) ) {
213
207
const subs = computed . subs
214
208
if ( subs !== undefined ) {
@@ -333,10 +327,10 @@ function checkDirty(current: Link): boolean {
333
327
current = current . nextDep
334
328
continue top
335
329
}
336
- dirty = false
330
+ dirty = ! ! ( sub . flags & SubscriberFlags . Dirty )
337
331
}
338
332
339
- return dirty
333
+ return dirty || ! ! ( current . sub . flags & SubscriberFlags . Dirty )
340
334
} while ( true )
341
335
}
342
336
You can’t perform that action at this time.
0 commit comments