aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_analysis
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2018-12-06 18:16:37 +0000
committerAleksey Kladov <[email protected]>2018-12-06 18:16:37 +0000
commit28ddecf6c99ef23bc96b9eb7bc8ee049f1732e76 (patch)
tree7912f80008f47e240be2ed8c88f923824409f396 /crates/ra_analysis
parentf6e8b376d1d21b8b697de5ef1e35a341855202ed (diff)
modernize even more
Diffstat (limited to 'crates/ra_analysis')
-rw-r--r--crates/ra_analysis/src/lib.rs8
-rw-r--r--crates/ra_analysis/tests/tests.rs7
2 files changed, 0 insertions, 15 deletions
diff --git a/crates/ra_analysis/src/lib.rs b/crates/ra_analysis/src/lib.rs
index 90528edfd..4b8b10816 100644
--- a/crates/ra_analysis/src/lib.rs
+++ b/crates/ra_analysis/src/lib.rs
@@ -1,14 +1,6 @@
1//! ra_analyzer crate is the brain of Rust analyzer. It relies on the `salsa` 1//! ra_analyzer crate is the brain of Rust analyzer. It relies on the `salsa`
2//! crate, which provides and incremental on-demand database of facts. 2//! crate, which provides and incremental on-demand database of facts.
3 3
4extern crate fst;
5extern crate ra_editor;
6extern crate ra_syntax;
7extern crate rayon;
8extern crate relative_path;
9extern crate rustc_hash;
10extern crate salsa;
11
12macro_rules! ctry { 4macro_rules! ctry {
13 ($expr:expr) => { 5 ($expr:expr) => {
14 match $expr { 6 match $expr {
diff --git a/crates/ra_analysis/tests/tests.rs b/crates/ra_analysis/tests/tests.rs
index 71d20dbe9..4ce2c5c85 100644
--- a/crates/ra_analysis/tests/tests.rs
+++ b/crates/ra_analysis/tests/tests.rs
@@ -1,10 +1,3 @@
1extern crate ra_analysis;
2extern crate ra_editor;
3extern crate ra_syntax;
4extern crate relative_path;
5extern crate rustc_hash;
6extern crate test_utils;
7
8use ra_syntax::TextRange; 1use ra_syntax::TextRange;
9use test_utils::assert_eq_dbg; 2use test_utils::assert_eq_dbg;
10 3