|
|
|
/* generated by Svelte vX.Y.Z */
|
|
|
|
import { assign, createElement, detachNode, init, insert, proto } from "svelte/shared.js";
|
|
|
|
|
|
|
|
function foo( node, callback ) {
|
|
|
|
// code goes here
|
|
|
|
};
|
|
|
|
|
|
|
|
var methods = {
|
|
|
|
foo ( bar ) {
|
|
|
|
console.log( bar );
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function create_main_fragment(component, ctx) {
|
|
|
|
var button, foo_handler;
|
|
|
|
|
|
|
|
return {
|
|
|
|
c() {
|
|
|
|
button = createElement("button");
|
|
|
|
button.textContent = "foo";
|
|
|
|
foo_handler = foo.call(component, button, function(event) {
|
|
|
|
component.foo( ctx.bar );
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
m(target, anchor) {
|
|
|
|
insert(target, button, anchor);
|
|
|
|
},
|
|
|
|
|
|
|
|
p(changed, _ctx) {
|
|
|
|
ctx = _ctx;
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
d(detach) {
|
|
|
|
if (detach) {
|
|
|
|
detachNode(button);
|
|
|
|
}
|
|
|
|
|
|
|
|
foo_handler.destroy();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
function SvelteComponent(options) {
|
|
|
|
init(this, options);
|
|
|
|
this._state = assign({}, options.data);
|
|
|
|
this._intro = true;
|
|
|
|
|
|
|
|
this._fragment = create_main_fragment(this, this._state);
|
|
|
|
|
|
|
|
if (options.target) {
|
|
|
|
this._fragment.c();
|
|
|
|
this._mount(options.target, options.anchor);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assign(SvelteComponent.prototype, proto);
|
|
|
|
assign(SvelteComponent.prototype, methods);
|
|
|
|
export default SvelteComponent;
|