### Before You File a Bug Report Please Confirm You Have Done The Following... - [X] I have tried restarting my IDE and the issue persists. - [X] I have updated to the latest version of the packages. ### What version of ESLint are you using? 9.17.0 ### What version of `eslint-plugin-svelte` are you using? 2.46.1 ### What did you do? With Svelte Advent they introduced each blocks without an item This is the example provided in the [docs](https://svelte.dev/docs/svelte/each#Each-blocks-without-an-item) ```svelte <div class="chess-board"> {#each { length: 8 }, rank} {#each { length: 8 }, file} <div class:black={(rank + file) % 2 === 1}></div> {/each} {/each} </div> ``` ### What did you expect to happen? To be valid code ### What actually happened? Throws this error at 0:0: Parsing error: Cannot read properties of null (reading 'end') ### Link to **GitHub Repo** with Minimal Reproducible Example [REPL](https://eslint-online-playground.netlify.app/#eNq1VMtu2zAQ/JUFiwKJa0toT4USBwX6uBXtveyBkVayHIoSSNpwIOjfuyT18qNpkSAXQ9yd2eUsd9wyo9P4++PnumpqhcpGZo/SIkvYbVbuIZXCmDVn6QaNWd3XQmec3XHFbfsGRbqBFiSqwm4S+AjdErRQD51L/w2QlxJ7ALdTi+ReivRh3V65AvDOw67hLXyA9XoN77u725iwvjFVjl1lX2X8DHm2ZGhkSTLSWuVlEW0NKSlJm7awNZDrugLOPgVQvDWc3XDV54Pyn3JXlGpABuCq8cFVQFzgCG1QD5wQWw1Un5tzrAmpAW8fGzSpLhvbczwYDx6cYS52ciL1wq64AhLUn0ykMa2rClWG2dKloig6YVzEzCUPuF+c5VLYeAbn7LdntO4H/OOYBAi4WMSLvghnS9IynQIDQApV7ESBPxpb1opofRGAMJnkaIY9aUiekybaLAQ0nsS969ko42H8Y2GgLZy+8WC1+EZ6vh4sKhOakbAzGRONlm04PDUPmv/xSHzg1acyvnoIPPv2zhpHt3eBF91+7Hx9QzZtyO5UgcrWiizqCwQrcOaesqqznXRLFRIZ7r9g45ZRpSXSVcaex252VFpeNGSivu9g4ieTpw6/CP2P5KnrL0KnLf0nYPxHmOP8ILnqWPcHksHofg==) ### Additional comments _No response_