Skip to main content

sqry_lang_python/relations/
mod.rs

1//! Relation tracking for Python
2//!
3//! Relation extraction uses the unified `GraphBuilder` implementations.
4mod graph_builder;
5pub(crate) mod local_scopes;
6
7pub use graph_builder::PythonGraphBuilder;