mirror of https://github.com/sveltejs/svelte
fix: trim whitespace while migrating blocks (#13941)
Co-authored-by: Oscar Dominguez <dominguez.celada@gmail.com>pull/13967/head
parent
7be3afb3a6
commit
12fcc7a35a
@ -0,0 +1,5 @@
|
||||
---
|
||||
'svelte': patch
|
||||
---
|
||||
|
||||
fix: trim whitespace while migrating blocks
|
@ -0,0 +1,27 @@
|
||||
{ @html "some html" }
|
||||
|
||||
{ #if false && {
|
||||
|
||||
}.x === 34 }
|
||||
true
|
||||
{ :else if false }
|
||||
false
|
||||
{/if}
|
||||
|
||||
{ #await [] }
|
||||
{ @const x = 43 }
|
||||
{x}
|
||||
{ :then i }
|
||||
{i}
|
||||
{ :catch e }
|
||||
dlkdj
|
||||
{/await}
|
||||
|
||||
{ #await [] then i }
|
||||
stuff
|
||||
{/await}
|
||||
|
||||
{ #key count }
|
||||
dlkdj
|
||||
{/key}
|
||||
|
@ -0,0 +1,26 @@
|
||||
{@html "some html"}
|
||||
|
||||
{#if false && {
|
||||
|
||||
}.x === 34}
|
||||
true
|
||||
{:else if false}
|
||||
false
|
||||
{/if}
|
||||
|
||||
{#await []}
|
||||
{@const x = 43}
|
||||
{x}
|
||||
{:then i}
|
||||
{i}
|
||||
{:catch e}
|
||||
dlkdj
|
||||
{/await}
|
||||
|
||||
{#await [] then i}
|
||||
stuff
|
||||
{/await}
|
||||
|
||||
{#key count}
|
||||
dlkdj
|
||||
{/key}
|
Loading…
Reference in new issue