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/runtime/samples/computed-values-function-de.../main.html

20 lines
202 B

<script>
let _x;
function getX () {
return _x;
}
export let y = 1;
function xGetter() {
_x = y * 2;
return getX;
}
export function x() {
return xGetter()();
}
</script>
<p>{x()}</p>