NullVoxPopuli

Results 2058 comments of NullVoxPopuli

@wcr-karan you did no such thing. please don't submit prs that delete a ton of our comments, or change our arrays apis.

yes! tyty I closed an AI generated PR, and I don't know why GH thought this was solved. Silly GH.

there is one reason to maybe keep it around: - helper() is the only utility we have right now for allowing _lazily_ consumed arguments to a function-ish helper that is,...

daaaang ``` duration phase estimated improvement -300ms [-365ms to -243ms] OR -7.12% [-8.65% to -5.76%] renderEnd phase estimated improvement -1ms [-1ms to 0ms] OR -3.16% [-7.84% to -0.6%] render1000Items1End phase...

I wonder if the problem is the package.json I have that is in the snippets folder? maybe language arrays aren't properly detected? Here is my package.json ``` { "name": "ember-snippets",...

> Or should we just run all test files without running test callbacks and output them? yea, this is what mocha and qunit do

depends on output format, I suppose. For stdout: ``` filename | describe | nested describe | test name ... ``` for json: ``` [ { name: 'describe | nested describe...

using `TrackedArray` solves: ```js collection = new TrackedArray([]); register = (id) => { console.log(4); this.collection.push(id); }; ``` I suspect because TrackedArray _also_ uses createStorage.