Struct cranelift_wasm::wasmparser::InitExpr
source · pub struct InitExpr<'a> { /* private fields */ }
Expand description
Represents an initialization expression.
Implementations§
source§impl<'a> InitExpr<'a>
impl<'a> InitExpr<'a>
sourcepub fn new(data: &[u8], offset: usize) -> InitExpr<'_>
pub fn new(data: &[u8], offset: usize) -> InitExpr<'_>
Constructs a new InitExpr
from the given data and offset.
sourcepub fn get_binary_reader<'b>(&self) -> BinaryReader<'b>where
'a: 'b,
pub fn get_binary_reader<'b>(&self) -> BinaryReader<'b>where
'a: 'b,
Gets a binary reader for the initialization expression.
sourcepub fn get_operators_reader<'b>(&self) -> OperatorsReader<'b>where
'a: 'b,
pub fn get_operators_reader<'b>(&self) -> OperatorsReader<'b>where
'a: 'b,
Gets an operators reader for the initialization expression.