NullVoxPopuli

Results 2065 comments of NullVoxPopuli

> I feel like we went from "implicit things" to "let's make them explicit for the greater good" to now this "well actually let's make some things implicit again", and...

> Should we create real objects in hash? would we not want them to crazy fine-grained reactivity for each property? the equiv of a `TrackedObject`?

Additionally, I think everyone is in favor of object and array _literals_, rather than helpers -- which still need design, but would eliminate the problem altogether. imagine (something like): ```gjs...

@flashios09 , given that we're going gjs/gts for all things as default (soon 🤞 ), folks are free to do: ```gjs import { hash as obj } from '@ember/helper'; import...

It's possible "structure" would be a layer on top of this. Like, "structure" is a convention would an overlaying tool could enforce / provide ergonomics on top of. I plan...

I'm a huge fan

> back from single-file class/template to separate class and template files. I sure hope not.

what about just "name"? ```js export const Foo = ; ``` gets transpiled to: ```js // ... export const Foo = template('...', { name: 'Foo', /* ... */ }); ```...

it's just `` would require more syntax work for some editors / tools, so my preference would be to only add something to attribute space if it's going to be...

What are the SSR impacts? (if we were to re-invest SSR in the most ideal way) - what is settled? - ignore idle? do we ignore it? -> flush idle...