Skip to main content

sqry_core/relations/
mod.rs

1//! Shared relation extraction infrastructure for language plugins.
2//!
3//! This module provides common utilities used by all language plugins:
4//! - `identity` - Call identity building utilities
5//! - `queries` - Tree-sitter query helpers
6//! - `types` - Synthetic name generation
7
8/// Builder utilities for constructing canonical call identities.
9pub mod identity;
10pub mod queries;
11pub mod types;
12
13pub use identity::{CallIdentityBuilder, CallIdentityKind, CallIdentityMetadata};
14pub use types::SyntheticNameBuilder;