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/component-static/expected.js

52 lines
942 B

/* generated by Svelte vX.Y.Z */
import { SvelteComponent as SvelteComponent_1, init, mount_component, noop, safe_not_equal } from "svelte/internal";
function create_fragment($$, ctx) {
var current;
var nested = new ctx.Nested({ props: { foo: "bar" } });
return {
c() {
nested.$$.fragment.c();
},
m(target, anchor) {
mount_component(nested, target, anchor);
current = true;
},
p: noop,
i(target, anchor) {
if (current) return;
this.m(target, anchor);
},
o(outrocallback) {
if (!current) return;
if (nested) nested.$$.fragment.o(outrocallback);
current = false;
},
d(detach) {
nested.$destroy(detach);
}
};
}
function instance($$self) {
const Nested = window.Nested;
return { Nested };
}
class SvelteComponent extends SvelteComponent_1 {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal);
}
}
export default SvelteComponent;