diff options
author | Andrea Pretto <[email protected]> | 2019-04-21 22:55:47 +0100 |
---|---|---|
committer | Andrea Pretto <[email protected]> | 2019-04-21 23:48:43 +0100 |
commit | 200032852be0c66b978c875a8edf0eca1f08b901 (patch) | |
tree | 11d45b4470c104f44b237540164bef54cdb55cd9 /crates/ra_hir/src | |
parent | 914421495835380b96e0016763fda6eff31a8179 (diff) |
complete_import: prevent panic when the anchor is the completion source range
(fix rebase mess)
Please enter the commit message for your changes. Lines starting
Diffstat (limited to 'crates/ra_hir/src')
-rw-r--r-- | crates/ra_hir/src/resolve.rs | 4 | ||||
-rw-r--r-- | crates/ra_hir/src/source_binder.rs | 6 |
2 files changed, 1 insertions, 9 deletions
diff --git a/crates/ra_hir/src/resolve.rs b/crates/ra_hir/src/resolve.rs index 0f866e6c2..ce80be17f 100644 --- a/crates/ra_hir/src/resolve.rs +++ b/crates/ra_hir/src/resolve.rs | |||
@@ -14,12 +14,8 @@ use crate::{ | |||
14 | generics::GenericParams, | 14 | generics::GenericParams, |
15 | expr::{scope::{ExprScopes, ScopeId}, PatId}, | 15 | expr::{scope::{ExprScopes, ScopeId}, PatId}, |
16 | impl_block::ImplBlock, | 16 | impl_block::ImplBlock, |
17 | <<<<<<< HEAD | ||
18 | path::Path, | 17 | path::Path, |
19 | Trait | 18 | Trait |
20 | ======= | ||
21 | path::Path, Trait, | ||
22 | >>>>>>> complete_import: add new import resolver infrastructure with some hardcoded importable name. | ||
23 | }; | 19 | }; |
24 | 20 | ||
25 | #[derive(Debug, Clone, Default)] | 21 | #[derive(Debug, Clone, Default)] |
diff --git a/crates/ra_hir/src/source_binder.rs b/crates/ra_hir/src/source_binder.rs index a6f0ab289..42399622a 100644 --- a/crates/ra_hir/src/source_binder.rs +++ b/crates/ra_hir/src/source_binder.rs | |||
@@ -19,11 +19,7 @@ use ra_syntax::{ | |||
19 | 19 | ||
20 | use crate::{ | 20 | use crate::{ |
21 | HirDatabase, Function, Struct, Enum, Const, Static, Either, DefWithBody, PerNs, Name, | 21 | HirDatabase, Function, Struct, Enum, Const, Static, Either, DefWithBody, PerNs, Name, |
22 | <<<<<<< HEAD | 22 | AsName, Module, HirFileId, Crate, Trait, Resolver, Ty, ImportResolver, |
23 | AsName, Module, HirFileId, Crate, Trait, Resolver, Ty, | ||
24 | ======= | ||
25 | AsName, Module, HirFileId, Crate, Trait, Resolver, ImportResolver, | ||
26 | >>>>>>> complete_import: add new import resolver infrastructure with some hardcoded importable name. | ||
27 | expr::{BodySourceMap, scope::{ScopeId, ExprScopes}}, | 23 | expr::{BodySourceMap, scope::{ScopeId, ExprScopes}}, |
28 | ids::LocationCtx, | 24 | ids::LocationCtx, |
29 | expr, AstId, | 25 | expr, AstId, |