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/dynamic-import/expected.js

57 lines
898 B

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