diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 13:49:52 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2024-01-25 13:49:52 +0100 |
| commit | 79463500a7ade3df7dc99454f5797beaf1d7eef9 (patch) | |
| tree | fe6ef0899c070a82fd723a7b78eb0b50878f4fd1 /crates/parser/src | |
| parent | 00ac90357bbd256436846beceba67b38d4743bf6 (diff) | |
chore: refactor executor and improve documentation
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates/parser/src')
| -rw-r--r-- | crates/parser/src/error.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/parser/src/error.rs b/crates/parser/src/error.rs index 714535a..35bad28 100644 --- a/crates/parser/src/error.rs +++ b/crates/parser/src/error.rs @@ -4,6 +4,7 @@ use alloc::string::{String, ToString}; use wasmparser::Encoding; #[derive(Debug)] +/// Errors that can occur when parsing a WebAssembly module pub enum ParseError { InvalidType, UnsupportedSection(String), |
