Alexander Prinzhorn

Results 617 comments of Alexander Prinzhorn

You are shadowing `bar` with a local variable / argument. I recommend eslint to catch this https://eslint.org/docs/latest/rules/no-shadow ```svelte export let bar; function foo(node, _bar) { bar = 123; return {...

I think I'm understanding what you want to achieve. But I don't see how this could be added in a meaningful way to Svelte. First of all it can only...

For completeness sake your code example is very similar to this https://github.com/sveltejs/svelte/issues/7429

I think the way you phrased everything makes it hard to follow and very unspecific. I honestly don't even know what exactly you're asking for or what your problem is....

Thanks, that explains why fixing it is so hard. I wasn't expecting it to be such an issue. So correct me if I'm wrong: you have component A and a...

I personally consider the current behavior correct. I don't think the proposed solution fixes anything, it just takes the issue and moves it somewhere else. E.g. what if `displaySomeData` can...

> Deploying in progress features behind a flag is a very common practice for large/complex web apps. It allows you to keep parity between staging and production environments. I'm aware,...

https://github.com/sveltejs/svelte/search?q=slide+height&type=issues https://github.com/sveltejs/svelte/issues/4831

> I'd spotted #4831, but [this comment](https://github.com/sveltejs/svelte/issues/4831#issuecomment-628952597) made me think the issue was fixed and I was seeing a regression. In the future please link related issues and other materials...

Also https://github.com/sveltejs/svelte/issues/2718