Skip to main content

neo_decompiler/nef/
parser.rs

1mod checksum;
2mod method_tokens;
3mod parse;
4
5/// Parser for Neo N3 NEF containers.
6///
7/// This type is stateless and can be reused across many parse calls.
8#[derive(Debug, Default, Clone, Copy)]
9pub struct NefParser;
10
11impl NefParser {
12    /// Create a new NEF parser.
13    #[must_use]
14    pub fn new() -> Self {
15        Self
16    }
17}