Guy Bedford
Guy Bedford
That looks really great. I also wonder if we could even reimplement the Walrus API around that reencoder model.
One issue with this is that `null` chars are valid characters in USV strings, so that null termination semantics still wouldn't be guaranteed. Admittedly as well, when I've come across...
Reopening as stalled but informative for anyone else wanting to take a stab.
This looks like a great step in the right direction to me. Feedback roughly in order: > The first change I'd like to propose to WIT is a requirement that...
Note the above should read: ```js [] [ { s: 49, e: 54, ls: 49, le: 54, n: 'name5', ln: 'name5' }, { s: 56, e: 61, ls: 56, le:...
The use of `import.meta.main` is now highly established in the Deno ecosystem so I think it would be very benefical to move forward with this. The other benefit of `import.meta.main`...
@jkrems it will likely be down to something like VM / compartments / realms to allow defining `import.meta` property hooks. Alternatively we could have a loader hook for this. The...
This PR is currently blocked by two members. @devsnek and @jkrems, would you be able to reconsider or restate your positions on this feature? I'd be glad to rebase and...
> I'd like to make sure that there's a way to wrap a module that uses import.meta.main We have the same problem here for any custom behaviour with loader hooks,...
Perhaps we aren't clear on the meaning of `import.meta.main`? My assumption personally is it's more of a `import.meta.cli_invocation_this_is_the__main_process_module` flag, where setting it virtually would be customizable through generic hooks. I...