1 2 3 4 5 6 7 8 9
//! AST graph data model: typed nodes plus parent → child adjacency. pub mod edge; pub mod graph; pub mod node; pub use edge::AstEdge; pub use graph::AstGraph; pub use node::AstNode;