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/onrender-onteardown-rewritten/expected.js

48 lines
808 B

/* generated by Svelte vX.Y.Z */
import { assign, callAll, init, noop, proto } from "svelte/shared.js";
function oncreate() {};
function ondestroy() {};
7 years ago
function create_main_fragment(component, state) {
return {
c: noop,
7 years ago
m: noop,
p: noop,
7 years ago
u: noop,
7 years ago
d: noop
};
}
function SvelteComponent(options) {
init(this, options);
7 years ago
this._state = assign({}, options.data);
7 years ago
this._handlers.destroy = [ondestroy];
var _oncreate = oncreate.bind(this);
7 years ago
if (!options.root) {
this._oncreate = [];
}
7 years ago
7 years ago
this._fragment = create_main_fragment(this, this._state);
7 years ago
this.root._oncreate.push(_oncreate);
if (options.target) {
this._fragment.c();
this._mount(options.target, options.anchor);
7 years ago
callAll(this._oncreate);
7 years ago
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;