| Summary: | [Wasm-GC] Add support for subtyping declarations | ||
|---|---|---|---|
| Product: | WebKit | Reporter: | Asumu Takikawa <asumu> |
| Component: | WebAssembly | Assignee: | Nobody <webkit-unassigned> |
| Status: | RESOLVED FIXED | ||
| Severity: | Normal | CC: | bashorov, dbezhetskov, saam, webkit-bug-importer, ysuzuki |
| Priority: | P2 | Keywords: | InRadar |
| Version: | WebKit Nightly Build | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Bug Depends on: | |||
| Bug Blocks: | 247394 | ||
|
Description
Asumu Takikawa
2022-04-22 12:31:55 PDT
There was a mistake in the example, it should have a `struct` operator in there: ``` (module (type $s1 (struct)) (type $s2 (sub $s1 (struct (field i32)))) ) ``` Pull request: https://github.com/WebKit/WebKit/pull/5786 Committed 256243@main (431164ca6a4b): <https://commits.webkit.org/256243@main> Reviewed commits have been landed. Closing PR #5786 and removing active labels. I'm wondering if there is an umbrella issue to track progress about GC proposal support? Also, could you please suggest how I may try current state in the Safari(I guess in Technology Preview)? Specifically how I cen turn on relevant options in Safari? (In reply to bashorov from comment #5) > I'm wondering if there is an umbrella issue to track progress about GC > proposal support? > > Also, could you please suggest how I may try current state in the Safari(I > guess in Technology Preview)? Specifically how I cen turn on relevant > options in Safari? I just created an umbrella bug for GC here: https://bugs.webkit.org/show_bug.cgi?id=247394 There is still a bunch of work needed to run non-trivial Wasm GC programs, but a subset of the spec tests will pass. There is a `--useWebAssemblyGC` flag for JSC that you can toggle if you build JSC standalone. Not sure it is exposed via WebKit and visible in the Safari UI though. > I just created an umbrella bug for GC Cool, thanks! > Not sure it is exposed via WebKit and visible in the Safari UI though. Where/who is right place/person to ask about it? *** Bug 233919 has been marked as a duplicate of this bug. *** |