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