Sibbe

Results 8 comments of Sibbe

> @dummdidumm this does not seem to work at the moment. > > If I do a `typedef` inisde of a normal `` block I get the following error: @dreitzner...

This is a problem that is older than jQuery, I wonder if this is something that Svelte should try to solve. Maybe this should not be solved by Svelte, but...

``` // client output if (img.__load) { foo(img.__load); } else { $.event('load', img, foo, false); } if (img.__error) { bar(img.__error); } else { $.event('error', img, bar, false); } ``` The...

As mentioned writing `$state(new Map())` does not make sense. `$state` intentionally does not make things like `Map` reactive. That's what `svelte/reactivity` is for. I would, however, expect it to work...

Ah, I see, that makes sense. I do understand the reasoning, and I can certainly agree with it to some extend. It's how I feel about the entirety of `svelte/reactivity`...

@ottomated I believe that the point is that if you would do this: ``` class MyClass { #something = {} setSomething(value) { this.#something = value; } getSomething() { return this.#something;...

I'm running into the same issue. Not sure if it's related as it happens for all dependencies that include binaries (including vite). For me the issue is that when I...

@eknkc SvelteKit also does sync rendering. How is that different? Isn't the whole idea behind this benchmark to benchmark SSR performance? And not how fast frameworks and renderers can stream/resolve...