xbp-analysis 10.57.0

Language-agnostic static analysis (error-handling / Aspirator-style) for XBP
Documentation
1
2
3
4
5
6
7
8
9
//! Rust language adapter (syn AST — compiler-aware parsing, not regex).
//!
//! Capability tradeoff: `syn` provides full syntax without rustc/rust-analyzer.
//! Type-level Result tracking is heuristic. Future: optional rust-analyzer backend.

mod adapter;
mod extractor;

pub use adapter::RustAdapter;