Guy Bedford
Guy Bedford
Some questions with regards to header validations: * Valid headers keys must not include whitespace * Valid header values must have whitespace trimmed Possible clarifications that therefore might be made:...
Exploring what would be required for the JS implementation, I'm not sure if it is easily possibly to implement this flag on top of JavaScript's date implementation as this data...
Adds the meeting notes from today's meeting.
Updates to the latest StarlingMonkey and Jco versions.
When implementing sync component model functions as async exports in JS (functions returning a promise), we should integrate with the event loop by: * Detecting if a promise is returned...
We need to resync with the latest Wasmtime tests.
With https://github.com/bytecodealliance/wasmtime/pull/8749 merged, it should be possible to revert https://github.com/bytecodealliance/jco/pull/444 to instead use a shrinking realloc.
This extends Weval into the WPT CI matrix, also adding it into a matrix for the main test run as well.
In the WPT debug build, `readable_get` and `writable_get` call `readable` and `writable` respectively, which fail an assertion when looking like: ```c++ JSObject *TransformStream::readable(JSObject *self) { MOZ_ASSERT(is_instance(self)); return &JS::GetReservedSlot(self, TransformStream::Slots::Readable).toObject(); }...
This works similarly to something like an `exit()` call where it implies that the process is done and that we no longer need to spin on async tasks. This seems...