neo-decompiler 0.6.2

Minimal tooling for inspecting Neo N3 NEF bytecode
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod checksum;
mod method_tokens;
mod parse;

/// Parser for Neo N3 NEF containers.
///
/// This type is stateless and can be reused across many parse calls.
#[derive(Debug, Default, Clone, Copy)]
pub struct NefParser;

impl NefParser {
    /// Create a new NEF parser.
    #[must_use]
    pub fn new() -> Self {
        Self
    }
}