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
//! Typed intermediate representation for decompiled code.
//!
//! This module provides a structured IR that separates semantic analysis
//! from text rendering, enabling cleaner transformations and multiple output formats.

#[allow(missing_docs)]
mod control_flow;
#[allow(missing_docs)]
mod expression;
#[allow(missing_docs)]
mod render;
#[allow(missing_docs)]
mod statement;

pub use control_flow::ControlFlow;
pub use expression::{BinOp, Expr, Literal, UnaryOp};
pub use render::{render_block, render_expr, render_stmt};
pub use statement::{Block, Stmt};

#[cfg(test)]
mod tests;