async-changeset
Rich Harris 7 months ago
parent 1e56ce2c25
commit 4c0405390a

@ -66,6 +66,9 @@ export class Boundary {
/** @type {BoundaryProps} */ /** @type {BoundaryProps} */
#props; #props;
/** @type {((anchor: Node) => void)} */
#children;
/** @type {Effect} */ /** @type {Effect} */
#effect; #effect;
@ -102,6 +105,8 @@ export class Boundary {
constructor(node, props, children) { constructor(node, props, children) {
this.#anchor = node; this.#anchor = node;
this.#props = props; this.#props = props;
this.#children = children;
this.parent = active_boundary; this.parent = active_boundary;
active_boundary = this; active_boundary = this;
@ -126,7 +131,7 @@ export class Boundary {
this.#is_creating_fallback = false; this.#is_creating_fallback = false;
try { try {
return branch(() => children(this.#anchor)); return branch(() => this.#children(this.#anchor));
} finally { } finally {
reset_is_throwing_error(); reset_is_throwing_error();
} }
@ -220,7 +225,7 @@ export class Boundary {
destroy_effect(/** @type {Effect} */ (this.#pending_effect)); destroy_effect(/** @type {Effect} */ (this.#pending_effect));
this.#main_effect = this.#run(() => { this.#main_effect = this.#run(() => {
return branch(() => children(this.#anchor)); return branch(() => this.#children(this.#anchor));
}); });
}); });
} else { } else {

Loading…
Cancel
Save