mirror of https://github.com/sveltejs/svelte
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
1.8 KiB
102 lines
1.8 KiB
/* generated by Svelte vX.Y.Z */
|
|
import { assign, createComment, createElement, detachNode, init, insert, proto } from "svelte/shared.js";
|
|
|
|
function create_main_fragment(component, ctx) {
|
|
var if_block_anchor;
|
|
|
|
function select_block_type(ctx) {
|
|
if (ctx.foo) return create_if_block;
|
|
return create_else_block;
|
|
}
|
|
|
|
var current_block_type = select_block_type(ctx);
|
|
var if_block = current_block_type(component, ctx);
|
|
|
|
return {
|
|
c() {
|
|
if_block.c();
|
|
if_block_anchor = createComment();
|
|
},
|
|
|
|
m(target, anchor) {
|
|
if_block.m(target, anchor);
|
|
insert(target, if_block_anchor, anchor);
|
|
},
|
|
|
|
p(changed, ctx) {
|
|
if (current_block_type !== (current_block_type = select_block_type(ctx))) {
|
|
if_block.d(1);
|
|
if_block = current_block_type(component, ctx);
|
|
if_block.c();
|
|
if_block.m(if_block_anchor.parentNode, if_block_anchor);
|
|
}
|
|
},
|
|
|
|
d(detach) {
|
|
if_block.d(detach);
|
|
if (detach) {
|
|
detachNode(if_block_anchor);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
// (3:0) {:else}
|
|
function create_else_block(component, ctx) {
|
|
var p;
|
|
|
|
return {
|
|
c() {
|
|
p = createElement("p");
|
|
p.textContent = "not foo!";
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, p, anchor);
|
|
},
|
|
|
|
d(detach) {
|
|
if (detach) {
|
|
detachNode(p);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
// (1:0) {#if foo}
|
|
function create_if_block(component, ctx) {
|
|
var p;
|
|
|
|
return {
|
|
c() {
|
|
p = createElement("p");
|
|
p.textContent = "foo!";
|
|
},
|
|
|
|
m(target, anchor) {
|
|
insert(target, p, anchor);
|
|
},
|
|
|
|
d(detach) {
|
|
if (detach) {
|
|
detachNode(p);
|
|
}
|
|
}
|
|
};
|
|
}
|
|
|
|
function SvelteComponent(options) {
|
|
init(this, options);
|
|
this._state = assign({}, options.data);
|
|
this._intro = true;
|
|
|
|
this._fragment = create_main_fragment(this, this._state);
|
|
|
|
if (options.target) {
|
|
this._fragment.c();
|
|
this._mount(options.target, options.anchor);
|
|
}
|
|
}
|
|
|
|
assign(SvelteComponent.prototype, proto);
|
|
export default SvelteComponent; |