neo-decompiler 0.10.2

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
14
15
16
17
//! Post-processing passes applied to lifted high-level statements.
//!
//! These passes are intentionally lightweight: they rewrite some common
//! Neo-compiler patterns (notably loops) into more idiomatic pseudo-code.

mod compound_assign;
mod else_if;
mod for_loops;
mod indexing;
mod inline;
mod join_close_chain;
mod labels;
mod overflow_collapse;
mod simplify;
mod switches;
mod util;
mod while_loops;