diff options
author | Aleksey Kladov <[email protected]> | 2019-01-11 09:53:16 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2019-01-11 13:01:57 +0000 |
commit | f848aa97ab9d9789f72828d28619dd4227c352b9 (patch) | |
tree | ccf9740c64004d7e7c4641f5bbf3af80589a35c0 /crates | |
parent | 0f4bc7589c40732fb78cb59525a6b4dcfb515567 (diff) |
group feature modules
Diffstat (limited to 'crates')
-rw-r--r-- | crates/ra_ide_api/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_ide_api/src/lib.rs b/crates/ra_ide_api/src/lib.rs index 65d21d899..f2439bfd7 100644 --- a/crates/ra_ide_api/src/lib.rs +++ b/crates/ra_ide_api/src/lib.rs | |||
@@ -18,14 +18,14 @@ macro_rules! ctry { | |||
18 | }; | 18 | }; |
19 | } | 19 | } |
20 | 20 | ||
21 | mod completion; | ||
22 | mod db; | 21 | mod db; |
23 | mod goto_definition; | ||
24 | mod imp; | 22 | mod imp; |
25 | pub mod mock_analysis; | 23 | pub mod mock_analysis; |
26 | mod runnables; | ||
27 | mod symbol_index; | 24 | mod symbol_index; |
28 | 25 | ||
26 | mod completion; | ||
27 | mod runnables; | ||
28 | mod goto_definition; | ||
29 | mod extend_selection; | 29 | mod extend_selection; |
30 | mod hover; | 30 | mod hover; |
31 | mod call_info; | 31 | mod call_info; |