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.
svelte/test/js/samples/if-block-simple/expected.js

78 lines
1.5 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) {
7 years ago
var if_block_anchor;
var if_block = (ctx.foo) && create_if_block(component, ctx);
return {
6 years ago
c() {
if (if_block) if_block.c();
7 years ago
if_block_anchor = createComment();
},
6 years ago
m(target, anchor) {
if (if_block) if_block.m(target, anchor);
insert(target, if_block_anchor, anchor);
},
6 years ago
p(changed, ctx) {
if (ctx.foo) {
if (!if_block) {
if_block = create_if_block(component, ctx);
if_block.c();
if_block.m(if_block_anchor.parentNode, if_block_anchor);
}
} else if (if_block) {
6 years ago
if_block.d(1);
if_block = null;
}
},
6 years ago
d(detach) {
if (if_block) if_block.d(detach);
if (detach) {
detachNode(if_block_anchor);
}
}
};
}
// (1:0) {#if foo}
function create_if_block(component, ctx) {
var p;
return {
6 years ago
c() {
p = createElement("p");
p.textContent = "foo!";
7 years ago
},
6 years ago
m(target, anchor) {
insert(target, p, anchor);
},
6 years ago
d(detach) {
if (detach) {
detachNode(p);
}
}
};
}
function SvelteComponent(options) {
init(this, options);
7 years ago
this._state = assign({}, options.data);
this._intro = true;
7 years ago
this._fragment = create_main_fragment(this, this._state);
7 years ago
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor);
7 years ago
}
}
7 years ago
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;