Results 788 comments of Benjamin Gruenbaum

> This seems to be incorrect per spec actually. It should reject with a TypeError. Would you prefer it if we wrote tests for the current spec and update when...

@domenic roger, will fix. Question about: `AsyncGeneratorMethod throw a SyntaxError if UniqueFormalParameters contains duplicate entries.`: async functions don't do this outside of strict mode - do async generators throw in...

@caitp can you please take a look at the start of the work (as a PR to your fork of test262) and let us know if we're on the right...

Note that we can get close with a proxy: ``` const datas = new WeakMap(); function data() { let map = datas.get(this); if(!map) { map = new Map(); datas.set(this, map)...

Oh, that's a good point. PR to involved the Content-ID welcome

If it runs in browsers would be cool to serve the contents locally from a service worker.

@phpnode hey, nice to see you here! I specifically want to use it or Node.js since workers landed. I want to use this package to build thread-safe data structures for...

> and can we even rely on SharedArrayBuffer sticking around in V8 if chrome doesn't use it any more? @bmeurer is it safe to say "yes"? Also, as far as...

> This paper describes a supposedly practical lock-free skiplist which might be worth looking at: http://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-579.pdf That's cool, I think initially just putting a hook around malloc/free would be enough...

> Maybe that's a concern to be left to other libraries though? Yes, I think it is - libraries can use `Atomics` themselves (at least I was anticipating so) for...