mirror of https://github.com/sveltejs/svelte
break declaration grouping on non-declaration nodes (fixes #2022)
parent
1bb1294c51
commit
3ee7938d34
@ -1,11 +1,10 @@
|
||||
<script>
|
||||
export let x;
|
||||
export let x, y
|
||||
|
||||
export let y;
|
||||
$: y = x;
|
||||
|
||||
export let z;
|
||||
$: z = x;
|
||||
</script>
|
||||
|
||||
<p>{x} {y} {z}</p>
|
||||
<p>{x} {y} {z}</p>
|
Loading…
Reference in new issue