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

26 lines
477 B

/* generated by Svelte vX.Y.Z */
import { SvelteComponent, init, safe_not_equal } from "svelte/internal";
const SOME_CONSTANT = 42;
function foo(bar) {
console.log(bar);
}
function instance($$self, $$props, $$invalidate) {
return [foo];
}
class Component extends SvelteComponent {
constructor(options) {
super();
init(this, options, instance, null, safe_not_equal, { foo: 0 });
}
get foo() {
return foo;
}
}
export default Component;
export { SOME_CONSTANT };