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

58 lines
880 B

/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
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(local) {
if (current) return;
nested.$$.fragment.i(local);
current = true;
},
o(local) {
nested.$$.fragment.o(local);
current = false;
},
d(detaching) {
nested.$destroy(detaching);
}
};
}
function instance($$self) {
const Nested = window.Nested;
return { Nested };
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, create_fragment, safe_not_equal, []);
}
}
export default Component;