mirror of
https://github.com/fluencelabs/wasmer
synced 2025-03-16 16:20:49 +00:00
doc(interface-types) Improve module descriptions.
This commit is contained in:
parent
d63508f19e
commit
32325c1861
@ -1,3 +1,6 @@
|
||||
//! Represents the WIT language as a tree. This is the central
|
||||
//! representation of the language.
|
||||
|
||||
use crate::interpreter::Instruction;
|
||||
use std::str;
|
||||
|
||||
|
@ -1 +1,4 @@
|
||||
//! Reads the AST from a particular data representation; for instance,
|
||||
//! `decoders::binary` reads the AST from a binary.
|
||||
|
||||
pub mod binary;
|
||||
|
@ -1 +1,5 @@
|
||||
//! Writes the AST into a particular format; for instance,
|
||||
//! `encoders::wat` writes the AST into a string representing WIT with
|
||||
//! its textual format.
|
||||
|
||||
pub mod wat;
|
||||
|
@ -1,3 +1,5 @@
|
||||
//! A stack-based interpreter to execute instructions of WIT adapters.
|
||||
|
||||
mod instruction;
|
||||
mod instructions;
|
||||
pub mod stack;
|
||||
|
Loading…
x
Reference in New Issue
Block a user