incremental-batches-perf-attempt
Rich Harris 2 months ago
parent ef4a077a51
commit 3a45c49b79

@ -530,7 +530,10 @@ export class Batch {
var effect = /** @type {Effect} */ (reaction);
if (flags & (ASYNC | BLOCK_EFFECT) && !this.async_deriveds.has(effect)) {
effect.f ^= ~CLEAN;
if ((effect.f & CLEAN) !== 0) {
effect.f ^= CLEAN;
}
this.schedule(effect);
}
}

Loading…
Cancel
Save