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/validator/samples/valid-reactive-vars/input.svelte

19 lines
264 B

<script>
var name = 'name';
var c = 'cc';
let d = 'd';
$: {
function a() {
function b() {
var c = 'c';
return c;
}
return b;
}
let d = 'dd';
name = a()();
}
</script>
<h1>Hello {name}</h1>