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-no-update/expected.js

120 lines
1.8 KiB

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
detach,
element,
empty,
6 years ago
init,
insert,
noop,
safe_not_equal
} from "svelte/internal";
// (7:0) {:else}
function create_else_block(ctx) {
var p;
return {
6 years ago
c() {
6 years ago
p = element("p");
p.textContent = "not foo!";
7 years ago
},
6 years ago
m(target, anchor) {
insert(target, p, anchor);
},
6 years ago
d(detaching) {
if (detaching) {
detach(p);
6 years ago
}
}
};
}
// (5:0) {#if foo}
function create_if_block(ctx) {
var p;
return {
6 years ago
c() {
6 years ago
p = element("p");
p.textContent = "foo!";
7 years ago
},
6 years ago
m(target, anchor) {
insert(target, p, anchor);
},
6 years ago
d(detaching) {
if (detaching) {
detach(p);
6 years ago
}
}
};
}
function create_fragment(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(ctx);
return {
6 years ago
c() {
if_block.c();
if_block_anchor = empty();
7 years ago
},
6 years ago
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(ctx);
if (if_block) {
if_block.c();
if_block.m(if_block_anchor.parentNode, if_block_anchor);
}
}
},
i: noop,
o: noop,
6 years ago
d(detaching) {
if_block.d(detaching);
6 years ago
if (detaching) {
detach(if_block_anchor);
6 years ago
}
}
};
}
function instance($$self, $$props, $$invalidate) {
let { foo } = $$props;
6 years ago
$$self.$set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};
return { foo };
}
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, instance, create_fragment, safe_not_equal, ["foo"]);
}
}
export default Component;