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.
This commit is contained in:
@@ -1,9 +1,18 @@
|
||||
pub mod analyze;
|
||||
pub mod binding;
|
||||
pub mod context;
|
||||
pub mod definition;
|
||||
pub mod globals;
|
||||
pub mod model;
|
||||
pub mod node;
|
||||
pub mod reference;
|
||||
pub mod scope;
|
||||
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::*;
|
||||
|
||||
Reference in New Issue
Block a user