dcodeIO
dcodeIO
For completeness, and to track progress, here is a (hopefully) complete list of the missing inline-assembler-like builtins: Integers and floats - [x] add - [x] sub - [x] mul -...
Makes me wonder whether we may just accept an instantiated `Transform` as a `--transform` argument, which the API can handle while irrelevant for the CLI, avoiding appending somewhat special arguments....
I am not quite sure what's the best textual notation here, but in the absence of a better idea I guess it's fine to merge this for now :)
Wouldn't it be more correct to specify `a\b` on Windows, so in `process.argv` one gets a singly-escaped `"a\\b"`?
It may be worth to note that these behave differently in between TS and AS, in that TS will not include the respective source file, while AS always will. This...
Hmm, so is my understanding wrong that this is mainly there to force elision, i.e., that code / top-level statements etc. of the other file doesn't matter / execute? I...
For a bit of background, the compiler does something along these lines for the [Number wrappers](https://github.com/AssemblyScript/assemblyscript/blob/main/std/assembly/number.ts) already, i.e. I8, I16, I32 etc. are attached to the basic types `i8`, `i16`,...
I would consider binaryen_wasm/js the same library as the native build just compiled to a different target, so if someone would want to run any pass present in the native...
Right, and both the CLI and the library have options to run any pass. I think it would be unexpected if some where missing. Say a producer wants to run...
Reminds me of the existing classes for `Expression`, `Block`, `Function` etc., which provide both namespaced static functions like `Function.getName` and convenient wrapper classes with getters for `Function#name` etc. through `deriveWrapperInstanceMembers`....