Struct wast::Expression [−][src]
pub struct Expression<'a> { pub instrs: Box<[Instruction<'a>]>, }
An expression, or a list of instructions, in the WebAssembly text format.
This expression type will parse s-expression-folded instructions into a flat
list of instructions for emission later on. The implicit end
instruction
at the end of an expression is not included in the instrs
field.
Fields
instrs: Box<[Instruction<'a>]>