diff options
-rw-r--r-- | crates/ra_ide/src/completion.rs | 10 | ||||
-rw-r--r-- | xtask/src/codegen/gen_unstable_future_descriptor.rs | 2 |
2 files changed, 6 insertions, 6 deletions
diff --git a/crates/ra_ide/src/completion.rs b/crates/ra_ide/src/completion.rs index a537b68b1..9c33a5a43 100644 --- a/crates/ra_ide/src/completion.rs +++ b/crates/ra_ide/src/completion.rs | |||
@@ -21,19 +21,19 @@ mod complete_trait_impl; | |||
21 | mod unstable_feature_descriptor; | 21 | mod unstable_feature_descriptor; |
22 | use ra_ide_db::RootDatabase; | 22 | use ra_ide_db::RootDatabase; |
23 | 23 | ||
24 | #[rustfmt::skip] | ||
25 | use crate::{ | 24 | use crate::{ |
26 | completion::{ | 25 | completion::{ |
27 | completion_context::CompletionContext, | 26 | completion_context::CompletionContext, |
28 | completion_item::{CompletionKind, Completions}, | 27 | completion_item::{CompletionKind, Completions}, |
29 | |||
30 | //TODO: cyclic imports caused by xtask generation, this should be better | ||
31 | unstable_feature_descriptor::UNSTABLE_FEATURE_DESCRIPTOR, | ||
32 | complete_attribute::LintCompletion, | ||
33 | }, | 28 | }, |
34 | FilePosition, | 29 | FilePosition, |
35 | }; | 30 | }; |
36 | 31 | ||
32 | //FIXME: cyclic imports caused by xtask generation, this should be better | ||
33 | use crate::completion::{ | ||
34 | complete_attribute::LintCompletion, unstable_feature_descriptor::UNSTABLE_FEATURE_DESCRIPTOR, | ||
35 | }; | ||
36 | |||
37 | pub use crate::completion::{ | 37 | pub use crate::completion::{ |
38 | completion_config::CompletionConfig, | 38 | completion_config::CompletionConfig, |
39 | completion_item::{CompletionItem, CompletionItemKind, CompletionScore, InsertTextFormat}, | 39 | completion_item::{CompletionItem, CompletionItemKind, CompletionScore, InsertTextFormat}, |
diff --git a/xtask/src/codegen/gen_unstable_future_descriptor.rs b/xtask/src/codegen/gen_unstable_future_descriptor.rs index 75b603d7d..12b68378e 100644 --- a/xtask/src/codegen/gen_unstable_future_descriptor.rs +++ b/xtask/src/codegen/gen_unstable_future_descriptor.rs | |||
@@ -21,7 +21,7 @@ pub fn generate_unstable_future_descriptor(mode: Mode) -> Result<()> { | |||
21 | .args(&["sparse-checkout", "set", "/src/doc/unstable-book/src/"]) | 21 | .args(&["sparse-checkout", "set", "/src/doc/unstable-book/src/"]) |
22 | .output()?; | 22 | .output()?; |
23 | Command::new("git").current_dir(path.clone()).args(&["pull", "origin", "master"]).output()?; | 23 | Command::new("git").current_dir(path.clone()).args(&["pull", "origin", "master"]).output()?; |
24 | //TODO: check git, and do pull | 24 | //FIXME: check git, and do pull |
25 | 25 | ||
26 | let src_dir = path.join("src/doc/unstable-book/src"); | 26 | let src_dir = path.join("src/doc/unstable-book/src"); |
27 | let files = WalkDir::new(src_dir.join("language-features")) | 27 | let files = WalkDir::new(src_dir.join("language-features")) |