Erik Arvidsson

Results 57 comments of Erik Arvidsson

Makes sense. Thanks

What else needs to be done here? Is https://github.com/rocicorp/undo enough to close this? @cesara

I see. This is still future work then.

Most likely fixed by https://github.com/rocicorp/mono/commit/4378df2f

To clarify, godoc comments must start with the function name. ```go // Data returns the good stuff. func Data() {} ```

``` js Promise.any(value).then((values) => { }); Promise.any([a, b, c]).then(([a, b, c]) => { }); ``` What if `value` is an array already? There needs to be a way to distinguish...

I see. Would it throw for non Objects? Would `{}` be treated like `[]`, just like the generic Array methods.

The spec only describes semantics. Things like GC is unobservable. An implementation needs to make sure that it cleans up unreachable objects. It is possible that we need to make...

The spec uses the term "List" which is an implementation specific data structure.

I've used esbuild for most of my needs in the past but it does not support generating `.d.ts` files. vite has [plugins for `.d.ts`](https://github.com/vitejs/vite/discussions/7509) files and that looks promising to...