From 829db60c869ea5ec9be37e6fc2ad94c2965d63d4 Mon Sep 17 00:00:00 2001 From: Henry Gressmann Date: Mon, 4 Dec 2023 01:53:09 +0100 Subject: feat: add wat support to cli Signed-off-by: Henry Gressmann --- crates/parser/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/parser/src/lib.rs') diff --git a/crates/parser/src/lib.rs b/crates/parser/src/lib.rs index 3cc51d6..b1729f4 100644 --- a/crates/parser/src/lib.rs +++ b/crates/parser/src/lib.rs @@ -40,10 +40,10 @@ impl Parser { #[cfg(feature = "std")] pub fn parse_module_file( &self, - path: impl AsRef, + path: impl AsRef + Clone, ) -> Result { use alloc::format; - let f = crate::std::fs::File::open("log.txt").map_err(|e| { + let f = crate::std::fs::File::open(path.clone()).map_err(|e| { ParseError::Other(format!("Error opening file {:?}: {}", path.as_ref(), e)) })?; -- cgit v1.3.1