ruff/crates/ruff_python_semantic/src/lib.rs
Charlie Marsh 86ff1febea
Re-export ruff_python_semantic members (#5094)
## Summary

This PR adds a more unified public API to `ruff_python_semantic`, so
that we don't need to do deeply nested imports all over the place.
2023-06-14 18:23:38 +00:00

18 lines
278 B
Rust

pub mod analyze;
mod binding;
mod context;
mod definition;
mod globals;
mod model;
mod node;
mod reference;
mod scope;
pub use binding::*;
pub use context::*;
pub use definition::*;
pub use globals::*;
pub use model::*;
pub use node::*;
pub use reference::*;
pub use scope::*;