From 82986d10358f02c8ae64850ed0b79efb4e823c54 Mon Sep 17 00:00:00 2001 From: vms Date: Thu, 11 Jun 2020 14:06:43 +0300 Subject: [PATCH] export wast::error from decoders/wat.rs --- src/decoders/wat.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/decoders/wat.rs b/src/decoders/wat.rs index 57edcb3..108c539 100644 --- a/src/decoders/wat.rs +++ b/src/decoders/wat.rs @@ -2,6 +2,7 @@ use crate::{ast::*, interpreter::Instruction, types::*, vec1::Vec1}; pub use wast::parser::ParseBuffer as Buffer; +pub use wast::Error; use wast::parser::{self, Cursor, Parse, Parser, Peek, Result}; mod keyword {