async-changeset
Rich Harris 7 months ago
parent 7e26a83775
commit 4a9ff233cd

@ -112,8 +112,8 @@ export class Boundary {
const reset = () => { const reset = () => {
this.#pending_count = 0; this.#pending_count = 0;
if ((boundary_effect.f & BOUNDARY_SUSPENDED) !== 0) { if ((this.#effect.f & BOUNDARY_SUSPENDED) !== 0) {
boundary_effect.f ^= BOUNDARY_SUSPENDED; this.#effect.f ^= BOUNDARY_SUSPENDED;
} }
if (this.#failed_effect !== null) { if (this.#failed_effect !== null) {
@ -133,7 +133,7 @@ export class Boundary {
}); });
if (this.#pending_count > 0) { if (this.#pending_count > 0) {
boundary_effect.f |= BOUNDARY_SUSPENDED; this.#effect.f |= BOUNDARY_SUSPENDED;
this.#show_pending_snippet(true); this.#show_pending_snippet(true);
} }
}; };

Loading…
Cancel
Save