NullVoxPopuli

Results 2071 comments of NullVoxPopuli

i mean, if anything, we remove action from the docs entirely. use plain methods. arrows if you need to bind (should be rareish) no imports needed. the benefit to doing...

> This leads to split implementations of reactivity that users need to think about- how you handle properties on classes and how you handle object VS how you handle primitives....

do they have any answers for our questions? otherwise, it looks like I need to explore and debug through this code: https://github.com/sveltejs/svelte/blob/main/packages/svelte/src/internal/client/proxy.js

> but seemingly then requires the default export to include all deep tracking code to be included in all payloads? yea -- the only way around this is to have...

accessing owner via a sample code like this: ```gjs export default class Demo extends Component { @link myInstance = new MyClass(() => 2); myOtherThing = this.myInstance.stuff; hi: {{this.myOtherThing}} } ```...

> action good thing `action` was deprecated for removal in v6! https://deprecations.emberjs.com/v5.x#toc_template-action

NOTE: related RFC, tracked-storage-primitive, in implementation here: https://github.com/emberjs/ember.js/pull/20814

I like where your head's at! I'm probably a fan of standardizing on new stuff going in `@ember/reactive` tbh. As I've been looking to implement Cell in - https://github.com/glimmerjs/glimmer-vm/pull/1682 And...

> Also, seems we need a way to detect Cell (for internal reactivity usage), like: maybe -- but I also don't think folks should be passing cells around without knowing...

A note on the choice of `current` vs (something like `value`): `current` communicates more meaning than `value` as `current` implies that the value is specifically up to date and _cannot_...