aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide_api/src/lib.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2019-01-23 13:05:13 +0000
committerAleksey Kladov <[email protected]>2019-01-23 13:05:13 +0000
commit2dbf58c579d6fe6a8acefcd9ae17eef7e984bca1 (patch)
treeeae324e5b6277358bf6d4c162cd387ac4a2a717f /crates/ra_ide_api/src/lib.rs
parent86507c0626eb07485b21c61638673acbb3c2a9ad (diff)
move completion item tests closer to the code
this is the reason why we need marks: the tests were spread across two files, because I've forgotten that there were tests already
Diffstat (limited to 'crates/ra_ide_api/src/lib.rs')
-rw-r--r--crates/ra_ide_api/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ra_ide_api/src/lib.rs b/crates/ra_ide_api/src/lib.rs
index 3c53e75ac..3502bfd2e 100644
--- a/crates/ra_ide_api/src/lib.rs
+++ b/crates/ra_ide_api/src/lib.rs
@@ -26,6 +26,9 @@ mod syntax_highlighting;
26mod parent_module; 26mod parent_module;
27mod rename; 27mod rename;
28 28
29#[cfg(test)]
30mod marks;
31
29use std::{fmt, sync::Arc}; 32use std::{fmt, sync::Arc};
30 33
31use ra_syntax::{SourceFile, TreeArc, TextRange, TextUnit}; 34use ra_syntax::{SourceFile, TreeArc, TextRange, TextUnit};