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
https://svelte.technology/repl?version=1.52.0&gist=c09e6f7dfc81fa6c65c75952b1d103f3
(Ignore the missing method being called in the event handler, that's not part of this issue.)
The click event handler is:
function click_handler(event) { var component = this._svelte.component; component.toggleTag(tag_count[0]); }
It's getting hoisted, but the tag_count variable (the array containing a tag and a count that is to be destructured) isn't defined here.
tag_count
tag
count
cc @funkybob
The text was updated successfully, but these errors were encountered:
The problem still happens even when I do define the target method, of course :)
Sorry, something went wrong.
Add destructured context container to usedContexts
31de60e
Fixes sveltejs#1139
No branches or pull requests
https://svelte.technology/repl?version=1.52.0&gist=c09e6f7dfc81fa6c65c75952b1d103f3
(Ignore the missing method being called in the event handler, that's not part of this issue.)
The click event handler is:
It's getting hoisted, but the
tag_count
variable (the array containing atag
and acount
that is to be destructured) isn't defined here.cc @funkybob
The text was updated successfully, but these errors were encountered: