python_ast/ast/
mod.rs

1//! The AST module contains the AST data structures. This largely parallels the [Python AST](https://greentreesnakes.readthedocs.io/en/latest/nodes.html).
2//!
3//! It also contains utility functions for dumping the AST to the terminal, using the Pythion ast::dump() function.
4
5pub mod tree;
6pub use tree::*;
7
8pub mod node;
9pub use node::*;
10
11pub mod dump;
12pub use dump::*;