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

59 lines
1.1 KiB

/* generated by Svelte vX.Y.Z */
6 years ago
import { assign, createElement, detachNode, init, insertNode, 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 {
6 years ago
c() {
button = createElement("button");
button.textContent = "foo";
foo_handler = foo.call(component, button, function(event) {
component.foo( ctx.bar );
7 years ago
});
},
6 years ago
m(target, anchor) {
insertNode(button, target, anchor);
},
6 years ago
p(changed, _ctx) {
ctx = _ctx;
6 years ago
},
7 years ago
6 years ago
d(detach) {
if (detach) {
detachNode(button);
}
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, true);
7 years ago
}
}
assign(SvelteComponent.prototype, proto);
assign(SvelteComponent.prototype, methods);
7 years ago
export default SvelteComponent;