scope-engine 0.3.0

Semantic Code Operation & Propagation Engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! SCOPE — Semantic Code Operation & Propagation Engine
//!
//! This crate provides code-structure parsing, symbol lookup, LSP integration,
//! and propagation analysis. It is an in-process library crate.

pub mod analyzer;
pub mod api;
pub mod engine;
pub mod language;
pub mod lsp;
pub mod patch;
pub mod selector;
pub mod state;
pub mod treesitter;