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/event-handlers-custom/expected.js

62 lines
1.2 KiB

/* generated by Svelte vX.Y.Z */
import { assign, createElement, detachNode, init, insertNode, noop, 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;
7 years ago
return {
c: function create() {
button = createElement("button");
button.textContent = "foo";
this.h();
7 years ago
},
h: function hydrate() {
foo_handler = foo.call(component, button, function(event) {
component.foo( ctx.bar );
7 years ago
});
},
m: function mount(target, anchor) {
insertNode(button, target, anchor);
},
p: function update(changed, _ctx) {
ctx = _ctx;
},
7 years ago
u: function unmount() {
detachNode(button);
7 years ago
},
d: function destroy() {
foo_handler.destroy();
}
};
}
function SvelteComponent(options) {
init(this, options);
7 years ago
this._state = assign({}, options.data);
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
}
}
assign(SvelteComponent.prototype, proto);
assign(SvelteComponent.prototype, methods);
7 years ago
export default SvelteComponent;