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/component-static-immutable2/expected.js

58 lines
1.1 KiB

7 years ago
/* generated by Svelte vX.Y.Z */
import { _differsImmutable, assign, callAll, init, noop, proto } from "svelte/shared.js";
7 years ago
var Nested = window.Nested;
function create_main_fragment(component, ctx) {
7 years ago
7 years ago
var nested_initial_data = { foo: "bar" };
7 years ago
var nested = new Nested({
root: component.root,
7 years ago
data: nested_initial_data
7 years ago
});
return {
6 years ago
c() {
7 years ago
nested._fragment.c();
},
6 years ago
m(target, anchor) {
7 years ago
nested._mount(target, anchor);
},
p: noop,
6 years ago
d(detach) {
nested.destroy(detach);
7 years ago
}
};
}
function SvelteComponent(options) {
init(this, options);
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);
7 years ago
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;
}
}
assign(SvelteComponent.prototype, proto);
SvelteComponent.prototype._differs = _differsImmutable;
7 years ago
export default SvelteComponent;