Skip to content

Commit 7c556ca

Browse files
authored
fix: error in snippets with type annotations (#573)
1 parent 37be78f commit 7c556ca

File tree

5 files changed

+4412
-5
lines changed

5 files changed

+4412
-5
lines changed

.changeset/wise-mice-hang.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"svelte-eslint-parser": patch
3+
---
4+
5+
fix: error in snippets with type annotations

src/parser/converts/block.ts

+10-5
Original file line numberDiff line numberDiff line change
@@ -651,13 +651,18 @@ export function convertSnippetBlock(
651651
...ctx.getConvertLocation({ start: nodeStart, end: node.end }),
652652
};
653653

654+
let beforeClosingParen: ESTree.Node;
655+
if (node.parameters.length > 0) {
656+
const lastParam = node.parameters[
657+
node.parameters.length - 1
658+
] as ESTree.Pattern & { typeAnnotation?: ESTree.Node };
659+
beforeClosingParen = lastParam.typeAnnotation ?? lastParam;
660+
} else {
661+
beforeClosingParen = node.expression;
662+
}
654663
const closeParenIndex = ctx.code.indexOf(
655664
")",
656-
getWithLoc(
657-
node.parameters.length > 0
658-
? node.parameters[node.parameters.length - 1]
659-
: node.expression,
660-
).end,
665+
getWithLoc(beforeClosingParen).end,
661666
);
662667

663668
const scopeKind =
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<script lang="ts">
2+
function hello() {
3+
console.log('Hello');
4+
}
5+
</script>
6+
7+
{@render foo({ onclick: hello })}
8+
9+
{#snippet foo(o: {onclick: () => void})}
10+
<button on:click={o.onclick}>Click me</button>
11+
{/snippet}

0 commit comments

Comments
 (0)