opendev-tools-symbol 0.1.4

Symbol operations for OpenDev: find, references, rename, and replace body via LSP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Symbol tools for OpenDev: find, references, rename, and replace body.
//!
//! These tools provide AST-based code navigation and refactoring capabilities,
//! delegating to an LSP server through `opendev-tools-lsp`.

pub mod error;
pub mod find_references;
pub mod find_symbol;
pub mod rename;
pub mod replace_body;
mod util;

pub use error::SymbolError;
pub use find_references::handle_find_references;
pub use find_symbol::handle_find_symbol;
pub use rename::handle_rename_symbol;
pub use replace_body::handle_replace_symbol_body;