Saam Barati
Saam Barati
Yeah exactly. Sorry, I should have also posted what the tests are doing. Thanks for summarizing.
After reading the spec more closely, I'm not sure this test is valid: ``` function test4(a1 = "a1") { var passed = true; passed &= a1 === "a1"; { function...
Actually, it seems like we should never bind to an argument name period. That's my interpretation of: "If replacing the FunctionDeclaration f with a VariableStatement that has F as a...
@lars-t-hansen This proposal looks good to me. I like it being similar to web spec. What dictates when the event loop can return back inside `dispatch()`?
Thanks for this patch. I'll try to provide comments later today. One tip: we should probably cut out a bunch of function names from your JS tests so we can...
> #### [1ed1974](https://github.com/WebKit/WebKit/commit/1ed1974c0e94299d99d446b0d6df9e6be36ff136) > [WebIDL] Eagerly allocate element wrappers onto a butterfly storage of a static NodeList > https://bugs.webkit.org/show_bug.cgi?id=234538 > > Reviewed by NOBODY (OOPS!). > Your commit message should...
I think we should keep WebAssembly.instantiate but disallow WebAssembly.compile. If we don't do this, we won't be future proofed against instantiating a thing that was compiled using compileStreaming. This will...