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

69 lines
1.3 KiB

/* generated by Svelte vX.Y.Z */
import { assign, callAll, createText, detachNode, init, insertNode, noop, proto } from "svelte/shared.js";
7 years ago
import Imported from 'Imported.html';
function create_main_fragment(component, ctx) {
var text;
var imported = new Imported({
root: component.root
});
var nonimported = new NonImported({
root: component.root
});
return {
6 years ago
c() {
imported._fragment.c();
text = createText("\n");
nonimported._fragment.c();
},
6 years ago
m(target, anchor) {
imported._mount(target, anchor);
insertNode(text, target, anchor);
nonimported._mount(target, anchor);
},
p: noop,
6 years ago
d(detach) {
imported.destroy(detach);
if (detach) {
detachNode(text);
}
6 years ago
nonimported.destroy(detach);
}
};
}
7 years ago
function SvelteComponent(options) {
init(this, options);
7 years ago
this._state = assign({}, options.data);
if (!options.root) {
this._oncreate = [];
this._beforecreate = [];
this._aftercreate = [];
}
7 years ago
this._fragment = create_main_fragment(this, this._state);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor);
7 years ago
this._lock = true;
callAll(this._beforecreate);
callAll(this._oncreate);
callAll(this._aftercreate);
this._lock = false;
7 years ago
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;