mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-29 23:04:47 +00:00
reorganize compiler crates
This commit is contained in:
parent
ffacac05bb
commit
53c48bf6b9
66 changed files with 12079 additions and 152 deletions
13
ast/src/lib.rs
Normal file
13
ast/src/lib.rs
Normal file
|
@ -0,0 +1,13 @@
|
|||
mod ast_gen;
|
||||
mod constant;
|
||||
#[cfg(feature = "fold")]
|
||||
mod fold_helpers;
|
||||
mod impls;
|
||||
mod location;
|
||||
#[cfg(feature = "unparse")]
|
||||
mod unparse;
|
||||
|
||||
pub use ast_gen::*;
|
||||
pub use location::Location;
|
||||
|
||||
pub type Suite<U = ()> = Vec<Stmt<U>>;
|
Loading…
Add table
Add a link
Reference in a new issue