chore: remove some unnecessary code (#16160)

pull/16179/head
Rich Harris 3 months ago committed by GitHub
parent 546608636a
commit c91e69b15b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -599,15 +599,6 @@ function resume_children(effect, local) {
if ((effect.f & INERT) === 0) return;
effect.f ^= INERT;
// If a dependency of this effect changed while it was paused,
// schedule the effect to update. we don't use `check_dirtiness`
// here because we don't want to eagerly recompute a derived like
// `{#if foo}{foo.bar()}{/if}` if `foo` is now `undefined
if ((effect.f & CLEAN) !== 0) {
set_signal_status(effect, DIRTY);
schedule_effect(effect);
}
var child = effect.first;
while (child !== null) {

Loading…
Cancel
Save