-
Notifications
You must be signed in to change notification settings - Fork 699
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The wat2wasm tool already supports wasmGC, such as struct.new #2363
base: main
Are you sure you want to change the base?
Conversation
Hopefully this change should mean we can run some of the 'gc' test suite? See |
There are still a few issues that are being worked on, mainly on type checking regarding reference types. Because the two proposals are very different in their citations. In addition, when submitting pr, I found an issue that has been raised about the coding of ref. In the gc proposal, the ref coding has changed, I hope to deal with it. |
Hey - really excited for this change (just ran into the lack of gc instructions in the wat conversion tool). Is this still actively being worked on? Anything I could help with, e.g. looking into the ref handling and/or failing builds..? |
I am confused by the first sentance of this PR, in (module
(type $TypeA (struct(field i32)))
(func (export "main")
(struct.new $TypeA (i32.const 42))
(drop)
)
)
|
The wat2wasm tool already supports wasmGC, such as struct.new.
guohaonan
School of Software, Beihang University