neo-decompiler 0.10.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
//! Control flow lifting helpers for the high-level emitter.
//!
//! Neo VM scripts are stack based, but we still try to reconstruct structured
//! control-flow patterns (loops, if/else blocks, and TRY/CATCH/FINALLY shapes)
//! from the linear instruction stream.

mod branches;
mod jumps;
mod loops;
mod targets;
mod try_blocks;