diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 01:53:09 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 01:53:09 +0100 |
| commit | 829db60c869ea5ec9be37e6fc2ad94c2965d63d4 (patch) | |
| tree | e007a6885b4d8425d05d09f9d1297c3a599f6c30 /crates/parser/src | |
| parent | 1fb52089715631f4edb2abdc592547d0f5121161 (diff) | |
feat: add wat support to cli
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/src')
| -rw-r--r-- | crates/parser/src/lib.rs | 4 | ||||
| -rw-r--r-- | crates/parser/src/module.rs | 4 |
2 files changed, 6 insertions, 2 deletions
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<crate::std::path::Path>, + path: impl AsRef<crate::std::path::Path> + Clone, ) -> Result<TinyWasmModule> { 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)) })?; diff --git a/crates/parser/src/module.rs b/crates/parser/src/module.rs index 268bad7..2beba9e 100644 --- a/crates/parser/src/module.rs +++ b/crates/parser/src/module.rs @@ -162,6 +162,10 @@ impl ModuleReader { validator.end(offset)?; self.end_reached = true; } + CustomSection(reader) => { + debug!("Found custom section"); + debug!("Skipping custom section: {:?}", reader.name()); + } UnknownSection { .. } => { return Err(ParseError::UnsupportedSection("Unknown section".into())) } |
