Guy Bedford
Guy Bedford
There might still be a use case for non-blocking poll list as previously discussed in https://github.com/WebAssembly/wasi-io/issues/51. If there are a list of polls on which you want to check readiness,...
Was it ever discussed to support direct timeout args to `poll_list`? Typically to avoid possibly blocking on a long-running task when there are no immediate tasks, one has to create...
I've found that if I have a resource with a `to-string` that coerces to `toString` in JavaScript and immediately supports logging correctly etc due to JavaScript's blessed handling of the...
First attempt at reinstating code coverage reports.
Mostly, the resolve implementation here is in line with the latest Node.js modules resolution, except for support for pattern trailers which was a late addition in https://github.com/nodejs/node/pull/39635. As packages start...
Just like export name strings must be valid well-formed unicode strings, this adds a SyntaxError for `import` specifier strings which are invalid unicode. While this is a normative change, it...
Properly integrating WPT into the CI run is still a TODO.
As much as possible, all errors should provide a named and line-numbered source snippet indicating the location of the error. Because we build sources directly, we can provide rich stacks...
I tried enabling the fetch path in the smoke test component here - https://github.com/fermyon/StarlingMonkey/blob/main/tests/smoke.js#L135. But on the `await textP` line I get the following error: ``` stdout [1] :: Log:...
I really like the static nature of source resolution during Wizering as an alternative to bundling. Further to this, it could be worth implementing the full Node.js resolution algorithm to...