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/collapses-text-around-comments/expected.js

75 lines
1.4 KiB

/* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, append, createElement, createText, detachNode, flush, init, insert, run, safe_not_equal, setData } from "svelte/internal";
function add_css() {
var style = createElement("style");
style.id = 'svelte-1a7i8ec-style';
style.textContent = "p.svelte-1a7i8ec{color:red}";
append(document.head, style);
}
function create_fragment(component, ctx) {
var p, text, current;
return {
c() {
p = createElement("p");
text = createText(ctx.foo);
p.className = "svelte-1a7i8ec";
},
m(target, anchor) {
insert(target, p, anchor);
append(p, text);
current = true;
},
p(changed, ctx) {
if (changed.foo) {
setData(text, ctx.foo);
}
},
i(target, anchor) {
if (current) return;
this.m(target, anchor);
},
o: run,
d(detach) {
if (detach) {
detachNode(p);
}
}
};
}
function instance($$self, $$props, $$invalidate) {
let { foo = 42 } = $$props;
$$self.$$.set = $$props => {
if ('foo' in $$props) $$invalidate('foo', foo = $$props.foo);
};
return { foo };
}
class SvelteComponent extends SvelteComponent_1 {
constructor(options) {
super();
if (!document.getElementById("svelte-1a7i8ec-style")) add_css();
init(this, options, instance, create_fragment, safe_not_equal);
}
get foo() {
return this.$$.ctx.foo;
}
set foo(foo) {
this.$set({ foo });
flush();
}
}
export default SvelteComponent;