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/setup-method/expected.js

38 lines
536 B

/* generated by Svelte vX.Y.Z */
import {
SvelteComponent,
init,
noop,
safe_not_equal
} from "svelte/internal";
function create_fragment(ctx) {
return {
c: noop,
m: noop,
p: noop,
i: noop,
o: noop,
d: noop
};
}
const SOME_CONSTANT = 42;
function foo(bar) {
console.log(bar);
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, null, create_fragment, safe_not_equal, ["foo"]);
}
get foo() {
return foo;
}
}
export default Component;
export { SOME_CONSTANT };