MotionlessTrain

Results 60 comments of MotionlessTrain

The way it is now is more flexible. There may be research in the future that requires a level 3 house, not house(s) totalling 3 levels. If this would be...

Could it be that the issue was only fixed in 1.19? (in which case, 1.18 will probably get the fixes later)

You are roughly 60 versions out of date. Could you try to update first?

> Also related to the proxy vs import, why isn't this method used for Object and Array as well? Should Object and Array just not be used for reactivity and...

This still can give issues with the example Rich gave before: ```js // somewhere.js const myMap = new Map() let count = 1 myMap.set('foo', count++) myMap.set('bar', count++) export function get_map()...

> Now the compiler knows that the proxied built-in "Map" is needed and packs it. This may work when you wrote the get_map function yourself, and it returns a new...

I may have been thinking too much about them being a class I was imagining that svelte would need to change the call to the constructor to a call to...

> It's nothing to agree with or not (I'd like custom classes support), but svelte currently doesn't allow for that yet. ( https://github.com/sveltejs/svelte/pull/9739 - Non-Pojo Section ). I was thinking...

There is actually a PR open at the moment to fix this: https://github.com/sveltejs/svelte/pull/10302

It looks like actions only update when their parameter gets reassigned. [That seems to be consistent with svelte 4](https://svelte.dev/repl/aab75755742145889115939e232231ad?version=4.2.10), but I'm not entirely sure whether that is entirely intended in...