sqry_lang_javascript/relations/mod.rs
1//! Relation tracking for JavaScript using the shared relations core.
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
5mod graph_builder;
6mod jsdoc_parser;
7pub(crate) mod local_scopes;
8mod type_extractor;
9
10pub use graph_builder::JavaScriptGraphBuilder;
11
12pub mod types {
13 #[allow(unused_imports)]
14 pub use sqry_core::relations::types::*;
15}