Sam Clegg

Results 1119 comments of Sam Clegg

Without addressing the rest of the questions here I would note the binaryen does have a new text parser that is nearing completion that will be able to be fully...

Could you upload a separate PR for the i64.const printing? I agree it should be consistent with i32.const. I'm not sure I understand the other two items yet..

Sadly wasm-decompile is not actively maintained. If you would like to send PRs to fix these kind of issues they would most welcome. Otherwise I'm afraid they won't get much...

You can list the exports using `wasm-objdump -j export`. We could add a flag to allow you to disassamble just exported functions but I'm not clear why that would be...

> Also I just tried `wasm-objdump -j export` and I had to add -x and then it told me "section not found: export" also checked the plural form What don't...

The `-h` or `--headers` flag lists the headers of a wasm file. You need to also specify the wasm file on the command line along with the `-h` flag. Sorry...

Right, -j Export lists all the exports, not just the functions. There is not flag for listing just part of the export section. Each section is listed in it's entirety,...

I guess we transitioned from `-latest` to `-12` for macos but didn't realise that would break the release builder. Simplest fix for now would likely be to just strip the...

I think we could use C pre-processor directives: https://gcc.gnu.org/onlinedocs/cpp/Line-Control.html