diff options
author | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-03-25 09:02:54 +0000 |
---|---|---|
committer | bors[bot] <bors[bot]@users.noreply.github.com> | 2019-03-25 09:02:54 +0000 |
commit | 958df1276e3d97b189dcd9de974564011c70ef62 (patch) | |
tree | a13de9e2de33ec86524d360acaa0793540363c2f /crates/ra_ide_api_light/src/lib.rs | |
parent | afe96b75eae99fe2dcd7fb7c99e15507290b3d5f (diff) | |
parent | 36cb58f76d702d87f445ee7eefe26a0bc1ee3811 (diff) |
Merge #1019
1019: structure moved to ra_ide_api r=matklad a=pasa
structure subtask for #1009
Co-authored-by: Sergey Parilin <[email protected]>
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 | }; | ||