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
//! 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};