|
|
|
@ -1,8 +1,10 @@
|
|
|
|
|
/** @import { TemplateNode } from '#client' */
|
|
|
|
|
/** @import { Effect, TemplateNode } from '#client' */
|
|
|
|
|
import { hydrate_node, hydrating, set_hydrate_node } from './hydration.js';
|
|
|
|
|
import { DEV } from 'esm-env';
|
|
|
|
|
import { init_array_prototype_warnings } from '../dev/equality.js';
|
|
|
|
|
import { get_descriptor } from '../../shared/utils.js';
|
|
|
|
|
import { active_effect } from '../runtime.js';
|
|
|
|
|
import { EFFECT_RAN } from '../constants.js';
|
|
|
|
|
|
|
|
|
|
// export these for reference in the compiled code, making global name deduplication unnecessary
|
|
|
|
|
/** @type {Window} */
|
|
|
|
@ -195,3 +197,14 @@ export function sibling(node, count = 1, is_text = false) {
|
|
|
|
|
export function clear_text_content(node) {
|
|
|
|
|
node.textContent = '';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Returns `true` if we're updating the current block, for example `condition` in
|
|
|
|
|
* an `{#if condition}` block just changed. In this case, the branch should be
|
|
|
|
|
* appended (or removed) at the same time as other updates within the
|
|
|
|
|
* current `<svelte:boundary>`
|
|
|
|
|
*/
|
|
|
|
|
export function should_defer_append() {
|
|
|
|
|
var flags = /** @type {Effect} */ (active_effect).f;
|
|
|
|
|
return (flags & EFFECT_RAN) !== 0;
|
|
|
|
|
}
|
|
|
|
|