sqry_lang_csharp/relations/mod.rs
1//! Relation extraction helpers for the C# plugin.
2//!
3//! No new semantics here. New behaviour must go via `sqry_core::graph::GraphBuilder` and the language-specific `*GraphBuilder` (see this module's export) to build `CodeGraph`.
4
5pub mod graph_builder;
6pub(crate) mod local_scopes;
7pub mod type_extractor;
8
9pub use graph_builder::CSharpGraphBuilder;