Guy Bedford
Guy Bedford
When importing this in Node.js itself, how is the extra Wasm file loaded from a path inside of Node.js though?
Ideally the best way we could achieve these same goals would be by fully migrating this project as a C++ build, work which was already outlined in https://github.com/anonrig/commonjs-lexer. There would...
I would of course tend towards JS semantics here, so records having unique strings and ordering supported (ie exactly a `list` representation underneath). In theory uniqueness could be managed by...
I suppose records & tuples alignment in JS would imply unordered record objects these days, so perhaps sorting might be preferable, it's hard to know. Either way, agreed as with...
Just to understand the usage you're referring to, to clarify, where currently we output: ```ts export type SomeEnum = 'value-a' | 'value-b' | 'value-c'; ``` you're wanting a configuration option...
I was under the impressio that the convention for shout case in JS was usually restricted to top-level constants such as: ```js const MY_CONST = 'val'; ``` where you might...
Error stacks simply don't work when there are panics in the StarlingMonkey runtime, even when pointing to the debug build (eg see https://github.com/bytecodealliance/ComponentizeJS/issues/138). Perhaps there's a simple fix indeed. Although...
@thesuhas the DWARF info is read, but primarily the direct information needed comes from the `"name"` section of the binary as well. I think we can get quite far here...
Thanks so much for following up on this @thesuhas look forward to trying it out when it's ready.
This is currently blocked on https://github.com/bytecodealliance/StarlingMonkey/issues/173.