incremental-batches
Rich Harris 4 weeks ago
parent 37b9a964b5
commit f86bf0d191

@ -760,6 +760,29 @@ export class Batch {
}
}
}
// console.group('batch_values');
// for (const [value, v] of batch_values) {
// console.log(this.current.has(value), value.label, v);
// }
// console.groupEnd();
// console.group('batch_cvs');
// for (const [reaction, cv] of batch_cvs) {
// console.log(
// this.cvs.has(reaction),
// cv,
// reaction.deps?.map((d) => d.label),
// reaction.label ?? reaction.fn
// );
// }
// console.groupEnd();
// console.group('batch_wvs');
// for (const [value, wv] of batch_wvs) {
// console.log(this.wvs.has(value), wv, value.label);
// }
// console.groupEnd();
}
/**

@ -192,7 +192,6 @@ export function is_dirty(reaction) {
}
}
set_cv(reaction);
return false;
}

Loading…
Cancel
Save