We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
bool
wast::core::FuncKind::Import
1 parent b646b64 commit ab55f63Copy full SHA for ab55f63
1 file changed
crates/wast/src/core/func.rs
@@ -33,6 +33,8 @@ pub enum FuncKind<'a> {
33
/// ```text
34
/// (func (type 3) (import "foo" "bar"))
35
/// ```
36
+ ///
37
+ /// The second element (`bool`) of the tuple means whether the function is _exact_. This concept is part of the custom descriptors proposal.
38
Import(InlineImport<'a>, bool),
39
40
/// Almost all functions, those defined inline in a wasm module.
0 commit comments