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

71 lines
1.1 KiB

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
detach,
init,
insert,
mount_component,
noop,
safe_not_equal,
space
6 years ago
} from "svelte/internal";
6 years ago
import Imported from "Imported.svelte";
7 years ago
function create_fragment(ctx) {
6 years ago
var t, current;
var imported = new Imported({});
var nonimported = new NonImported({});
return {
6 years ago
c() {
imported.$$.fragment.c();
t = space();
nonimported.$$.fragment.c();
},
6 years ago
m(target, anchor) {
mount_component(imported, target, anchor);
6 years ago
insert(target, t, anchor);
mount_component(nonimported, target, anchor);
current = true;
},
p: noop,
i(local) {
if (current) return;
imported.$$.fragment.i(local);
nonimported.$$.fragment.i(local);
current = true;
},
o(local) {
imported.$$.fragment.o(local);
nonimported.$$.fragment.o(local);
current = false;
},
6 years ago
d(detaching) {
imported.$destroy(detaching);
6 years ago
if (detaching) {
detach(t);
6 years ago
}
6 years ago
nonimported.$destroy(detaching);
}
};
}
7 years ago
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, null, create_fragment, safe_not_equal, []);
7 years ago
}
}
export default Component;