sqry-core 6.0.15

Core library for sqry - semantic code search engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Shared relation extraction infrastructure for language plugins.
//!
//! This module provides common utilities used by all language plugins:
//! - `identity` - Call identity building utilities
//! - `queries` - Tree-sitter query helpers
//! - `types` - Synthetic name generation

/// Builder utilities for constructing canonical call identities.
pub mod identity;
pub mod queries;
pub mod types;

pub use identity::{CallIdentityBuilder, CallIdentityKind, CallIdentityMetadata};
pub use types::SyntheticNameBuilder;