async-svelte-map
Rich Harris 6 months ago
parent 6af7f9068c
commit c313797422

@ -585,20 +585,14 @@ export class Batch {
// we need to override values with the ones in this batch... // we need to override values with the ones in this batch...
batch_values = new Map(this.current); batch_values = new Map(this.current);
var is_earlier = true; // ...and undo changes belonging to other batches unless they block this one
// ...and undo changes belonging to other batches
// that don't coincide with this batch
for (const batch of batches) { for (const batch of batches) {
if (batch === this) { if (batch === this) continue;
is_earlier = false;
continue;
}
var intersects = false; var intersects = false;
var differs = false; var differs = false;
if (is_earlier) { if (batch.id < this.id) {
for (const source of batch.current.keys()) { for (const source of batch.current.keys()) {
intersects ||= this.current.has(source); intersects ||= this.current.has(source);
differs ||= !this.current.has(source); differs ||= !this.current.has(source);

Loading…
Cancel
Save