diff options
author | Sergey Parilin <[email protected]> | 2019-03-22 12:54:26 +0000 |
---|---|---|
committer | Sergey Parilin <[email protected]> | 2019-03-25 08:41:21 +0000 |
commit | 36cb58f76d702d87f445ee7eefe26a0bc1ee3811 (patch) | |
tree | a13de9e2de33ec86524d360acaa0793540363c2f /crates/ra_ide_api_light/src/lib.rs | |
parent | afe96b75eae99fe2dcd7fb7c99e15507290b3d5f (diff) |
structure moved to ra_ide_api
ra_ide_api_light removed completely
Diffstat (limited to 'crates/ra_ide_api_light/src/lib.rs')
-rw-r--r-- | crates/ra_ide_api_light/src/lib.rs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/crates/ra_ide_api_light/src/lib.rs b/crates/ra_ide_api_light/src/lib.rs deleted file mode 100644 index df7f144b6..000000000 --- a/crates/ra_ide_api_light/src/lib.rs +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | //! This crate provides those IDE features which use only a single file. | ||
2 | //! | ||
3 | //! This usually means functions which take syntax tree as an input and produce | ||
4 | //! an edit or some auxiliary info. | ||
5 | |||
6 | mod structure; | ||
7 | |||
8 | use ra_syntax::TextRange; | ||
9 | |||
10 | pub use crate::{ | ||
11 | structure::{file_structure, StructureNode}, | ||
12 | }; | ||