incremental-batches
Simon Holthausen 12 hours ago
parent eeac44be8c
commit 353d0e4317
No known key found for this signature in database

@ -568,9 +568,10 @@ export class Batch {
// skip if value is derived and is neither dirty nor maybe dirty. transitive
// deriveds (a derived depending on another derived) are only MAYBE_DIRTY, so
// we must continue traversing them to reach the effects that depend on them
if ((value.f & DERIVED) !== 0 && (value.f & (DIRTY | MAYBE_DIRTY)) === 0) {
return;
}
// TODO how still need a variant of this or not?
// if ((value.f & DERIVED) !== 0 && (value.f & (DIRTY | MAYBE_DIRTY)) === 0) {
// return;
// }
for (const reaction of reactions) {
var flags = reaction.f;

Loading…
Cancel
Save