neo-decompiler 0.8.1

Neo N3 NEF decompiler: parse, disassemble, lift bytecode to high-level pseudocode and C# skeletons, with a CLI, JSON reports, and optional WebAssembly bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! JSON report structures and helpers for CLI output.

mod instructions;
mod manifest;
mod method_tokens;
mod types;

pub(super) use instructions::InstructionReport;
pub(super) use manifest::summarize_manifest;
pub(super) use method_tokens::{
    build_method_token_report, collect_warnings, format_method_token_line, MethodTokenReport,
};
pub(super) use types::{AnalysisReport, DecompileReport, DisasmReport, InfoReport, TokensReport};