wasm: implement Stmt::RuntimeError

This commit is contained in:
Brian Carroll 2022-02-10 10:13:54 +00:00
parent 0d08c97e44
commit 8c5fe2ae22
2 changed files with 31 additions and 22 deletions

View file

@ -850,7 +850,7 @@ impl Serialize for DataSegment<'_> {
#[derive(Debug)]
pub struct DataSection<'a> {
count: u32,
bytes: Vec<'a, u8>,
pub bytes: Vec<'a, u8>,
}
impl<'a> DataSection<'a> {