tomblachut / svelte-intellij

Svelte components in WebStorm and friends
MIT License
485 stars 38 forks source link

Add support for @const #297

Closed catapop84 closed 1 year ago

catapop84 commented 2 years ago

https://svelte.dev/docs#template-syntax-const

<script>
    export let boxes;
</script>

{#each boxes as box}
    {@const area = box.width * box.height}
    {box.width} * {box.height} = {area}
{/each}

in this example I receive this error: Expected html or debug

I'm using plugin version 0.22.1 with webstorm 2022.1.4

dominikg commented 2 years ago

duplicate of #268