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

62 lines
1.2 KiB

6 years ago
import {
SvelteComponent,
destroy_component,
6 years ago
detach,
init,
insert,
mount_component,
noop,
safe_not_equal,
space,
transition_in,
transition_out
6 years ago
} from "svelte/internal";
6 years ago
import Imported from "Imported.svelte";
7 years ago
function create_fragment(ctx) {
let t;
let current;
const imported = new Imported({});
const 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;
transition_in(imported.$$.fragment, local);
transition_in(nonimported.$$.fragment, local);
current = true;
},
o(local) {
transition_out(imported.$$.fragment, local);
transition_out(nonimported.$$.fragment, local);
current = false;
},
6 years ago
d(detaching) {
destroy_component(imported, detaching);
if (detaching) detach(t);
destroy_component(nonimported, 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;