rust-analyzer/crates/ra_ide_api_light/src/lib.rs
2019-03-23 17:34:49 +01:00

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},
};