We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Most of the time, sourcemaps are 1:1. Sometimes, they're not. In a case like this...
<script> let user = $state({ name: 'alice' }); </script> <input bind:value={user.name}>
...this code is generated in dev mode...
$.validate_binding("bind:value={user.name}", () => user, () => "name", 5, 7); $.bind_value(input, () => user.name, ($$value) => $.assign(user, "name", $$value, "App.svelte:5:19"));
...and hovering over the user in the editor will only highlight the first of two possible mappings in the output:
user
Ideally, both would be highlighted
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Most of the time, sourcemaps are 1:1. Sometimes, they're not. In a case like this...
...this code is generated in dev mode...
...and hovering over the
user
in the editor will only highlight the first of two possible mappings in the output:Ideally, both would be highlighted
The text was updated successfully, but these errors were encountered: