fluidattacks-blends-domain 0.6.1

Blends functional core: pure AST graph to syntax graph (no_std)
Documentation
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;