Skip to content
New issue

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

{{#each}} destructuring references not hoisted correctly #1139

Closed
Conduitry opened this issue Jan 28, 2018 · 1 comment
Closed

{{#each}} destructuring references not hoisted correctly #1139

Conduitry opened this issue Jan 28, 2018 · 1 comment
Labels

Comments

@Conduitry
Copy link
Member

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.

cc @funkybob

@funkybob
Copy link
Contributor

The problem still happens even when I do define the target method, of course :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants