Skip to main content

scope_engine/
lib.rs

1//! SCOPE — Semantic Code Operation & Propagation Engine
2//!
3//! This crate provides code-structure parsing, symbol lookup, LSP integration,
4//! and propagation analysis. It is an in-process library crate.
5
6pub mod analyzer;
7pub mod api;
8pub mod engine;
9pub mod language;
10pub mod lsp;
11pub mod patch;
12pub mod selector;
13pub mod state;
14pub mod treesitter;