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
842 B

/* generated by Svelte vX.Y.Z */
import { assign, callAll, init, noop, proto } from "svelte/shared.js";
function oncreate() {};
function ondestroy() {};
function create_main_fragment(state, component) {
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 = [_oncreate];
} else {
this.root._oncreate.push(_oncreate);
}
7 years ago
this._fragment = create_main_fragment(this._state, this);
7 years ago
if (options.target) {
this._fragment.c();
this._fragment.m(options.target, options.anchor || null);
7 years ago
callAll(this._oncreate);
7 years ago
}
}
assign(SvelteComponent.prototype, proto);
export default SvelteComponent;