|
|
@ -204,10 +204,8 @@ export function boundary(node, props, boundary_fn) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
if (props.pending) {
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
boundary.fn.is_pending = () => props.pending;
|
|
|
|
boundary.fn.pending = true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (hydrating) {
|
|
|
|
if (hydrating) {
|
|
|
|
hydrate_next();
|
|
|
|
hydrate_next();
|
|
|
@ -270,7 +268,7 @@ export function capture() {
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
export function is_pending_boundary(boundary) {
|
|
|
|
export function is_pending_boundary(boundary) {
|
|
|
|
// @ts-ignore
|
|
|
|
// @ts-ignore
|
|
|
|
return boundary.fn.pending;
|
|
|
|
return boundary.fn.is_pending();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export function suspend() {
|
|
|
|
export function suspend() {
|
|
|
|