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/hoisted-const/expected.js

51 lines
709 B

/* generated by Svelte vX.Y.Z */
6 years ago
import {
SvelteComponent,
6 years ago
append,
detach,
element,
init,
insert,
noop,
safe_not_equal,
text
} from "svelte/internal";
function create_fragment(ctx) {
6 years ago
var b, t_value = get_answer(), t;
return {
c() {
6 years ago
b = element("b");
t = text(t_value);
},
m(target, anchor) {
insert(target, b, anchor);
6 years ago
append(b, t);
},
p: noop,
i: noop,
o: noop,
6 years ago
d(detaching) {
if (detaching) {
detach(b);
}
}
};
}
const ANSWER = 42;
function get_answer() { return ANSWER; }
class Component extends SvelteComponent {
constructor(options) {
super();
6 years ago
init(this, options, null, create_fragment, safe_not_equal, []);
}
}
export default Component;