mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 06:11:35 +00:00
12 lines
305 B
Rust
12 lines
305 B
Rust
//! This crate provides those IDE features which use only a single file.
|
|
//!
|
|
//! This usually means functions which take syntax tree as an input and produce
|
|
//! an edit or some auxiliary info.
|
|
|
|
mod structure;
|
|
|
|
use ra_syntax::TextRange;
|
|
|
|
pub use crate::{
|
|
structure::{file_structure, StructureNode},
|
|
};
|