component-model icon indicating copy to clipboard operation
component-model copied to clipboard

Repository for design and specification of the Component Model

Results 181 component-model issues
Sort by recently updated
recently updated
newest added

Looking at: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md?plain=1#L638-L653 it shows that a `string` should be despecialized to a `list`, but it is not implemented like that in definitions.py, is that a conflict?

Hi all, I do apologize in advance if this topic was already discussed and documented somewhere - if that's the case, I'd be grateful for any pointers to those discussions....

I'm having some trouble switching to wasi preview 2. For example, the following interface: ```wit package wasi:[email protected]; interface random { get-random-bytes: func(len: u64) -> list; } ``` The function signature...

pre-1.0

This PR adds fixed-length lists as a "gated feature" (i.e., features spec'd and ready to implement, but not yet included in a Preview release), as proposed and discussed in #181.

There's an interesting question and discussion in [wasi-http/#95](https://github.com/WebAssembly/WASI/issues/807) that, by the end, doesn't feel specific to "HTTP" at all and thus perhaps deserving of being addressed more generally in the...

There doesn't seem to be an option right now to force parameters to be passed inline For `record`, `list`, `tuple`, `flags`, etc., they are all transfer forms of ptr +...

@alexcrichton brought up the idea of supporting packages in-line in a file in addition to the `package` statement. This would help with bundling world definitions into single files as part...

This PR proposes to change how `use` works inside WIT `world`s, based on some initial discussion in [wit-bindgen/#822](https://github.com/bytecodealliance/wit-bindgen/issues/822). Currently, `use` can be used with the same syntax in both `interface`s...

Over in #311, @oovm points out that the fact that components broadly include identifiers in their public interfaces means that it's hard to fix naming mistakes in stable APIs. I...

I most recently saw this project https://github.com/bytecodealliance/WASI-Virt This is very useful, but I now have a question about the interface provided by the host. **Does the host must to implement...