/* generated by Svelte vX.Y.Z */ import { assign, createComment, createElement, detachNode, init, insertNode, noop, proto } from "svelte/shared.js"; function create_main_fragment(state, component) { var if_block_anchor; var current_block_type = select_block_type(state); var if_block = current_block_type(state, component); return { c: function create() { if_block.c(); if_block_anchor = createComment(); }, m: function mount(target, anchor) { if_block.m(target, anchor); insertNode(if_block_anchor, target, anchor); }, p: function update(changed, state) { if (current_block_type !== (current_block_type = select_block_type(state))) { if_block.u(); if_block.d(); if_block = current_block_type(state, component); if_block.c(); if_block.m(if_block_anchor.parentNode, if_block_anchor); } }, u: function unmount() { if_block.u(); detachNode(if_block_anchor); }, d: function destroy() { if_block.d(); } }; } // (1:0) {{#if foo}} function create_if_block(state, component) { var p; return { c: function create() { p = createElement("p"); p.textContent = "foo!"; }, m: function mount(target, anchor) { insertNode(p, target, anchor); }, u: function unmount() { detachNode(p); }, d: noop }; } // (3:0) {{else}} function create_if_block_1(state, component) { var p; return { c: function create() { p = createElement("p"); p.textContent = "not foo!"; }, m: function mount(target, anchor) { insertNode(p, target, anchor); }, u: function unmount() { detachNode(p); }, d: noop }; } function select_block_type(state) { if (state.foo) return create_if_block; return create_if_block_1; } function SvelteComponent(options) { init(this, options); this._state = assign({}, options.data); this._fragment = create_main_fragment(this._state, this); if (options.target) { this._fragment.c(); this._fragment.m(options.target, options.anchor || null); } } assign(SvelteComponent.prototype, proto); export default SvelteComponent;