| #
483eb432 |
| 21-Mar-2026 |
Vasily Chekalkin <[email protected]> |
Merge wasm_tag type into wasm_functype / clean up C API tag headers (#12803)
* Merge wasm_tag type into wasm_functype / clean up C API tag headers
- Move tag type info into wasm.h alongside other c
Merge wasm_tag type into wasm_functype / clean up C API tag headers (#12803)
* Merge wasm_tag type into wasm_functype / clean up C API tag headers
- Move tag type info into wasm.h alongside other core types instead of a separate wasmtime/tag.h header - Remove wasmtime/tag.h (contents merged into wasm.h / wasm.hh) - Update extern.hh and tag.hh to reflect new layout - Add tag param accessors in func.rs - Refactor tag.rs to match updated C API surface - Update tag_type.cc tests accordingly
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
* doc-wasm.h: add wasm_tagtype_t documentation and fix wasm_name typo
Add Doxygen documentation for the `wasm_tagtype_t` type and its associated functions (`wasm_tagtype_new`, `wasm_tagtype_functype`, vec helpers, and externtype conversion functions). Also document `WASM_EXTERN_TAG` and the `wasm_tagtype_as_externtype*` / `wasm_externtype_as_tagtype*` conversion functions.
Fix pre-existing typo: `wasm_name_new_new_uninitialized` -> `wasm_name_new_uninitialized`.
Co-Authored-By: Claude Sonnet 4.6 <[email protected]>
---------
Co-authored-by: Claude Sonnet 4.6 <[email protected]>
show more ...
|
|
Revision tags: v43.0.0, v42.0.1, v41.0.4, v42.0.0, v40.0.4, v36.0.6, v24.0.6, v41.0.3, v41.0.2, v41.0.1, v36.0.5, v40.0.3, v41.0.0, v36.0.4, v39.0.2, v40.0.2, v40.0.1, v40.0.0, v39.0.1, v39.0.0, v38.0.4, v37.0.3, v36.0.3, v24.0.5, v38.0.3, v38.0.2, v38.0.1, v37.0.2, v37.0.1, v37.0.0, v36.0.2, v36.0.1, v36.0.0, v35.0.0, v24.0.4, v33.0.2, v34.0.2, v34.0.1, v33.0.1, v24.0.3, v32.0.1, v34.0.0, v33.0.0, v32.0.0, v31.0.0, v30.0.2, v30.0.1, v30.0.0, v29.0.1, v29.0.0, v28.0.1, v28.0.0, v27.0.0, v26.0.1, v25.0.3, v24.0.2, v26.0.0, v21.0.2, v22.0.1, v23.0.3, v25.0.2, v24.0.1, v25.0.1, v25.0.0, v24.0.0, v23.0.2, v23.0.1, v23.0.0, v22.0.0, v21.0.1, v21.0.0, v20.0.2, v20.0.1, v20.0.0, v17.0.3, v19.0.2, v18.0.4, v19.0.1, v19.0.0 |
| #
8f03b22e |
| 18-Mar-2024 |
Alex Crichton <[email protected]> |
Remove wasm-c-api submodule (#8170)
* Remove wasm-c-api submodule
This submodule hasn't been updated in ~3 years at this point and we additionally don't need most of the submodule. Instead add a sc
Remove wasm-c-api submodule (#8170)
* Remove wasm-c-api submodule
This submodule hasn't been updated in ~3 years at this point and we additionally don't need most of the submodule. Instead add a script to copy the files we need and verify in CI that the files are up-to-date.
This also makes using the C API a bit nicer where you don't have to have two `include` directories with a Wasmtime source tree, just one suffices.
* Don't format wasm.h{,h} vendored files
show more ...
|