neo-decompiler 0.7.0

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
//! IR to text rendering utilities.

mod expr;
mod stmt;

pub use expr::render_expr;
pub use stmt::{render_block, render_stmt};