aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_hir/src/source_binder.rs
diff options
context:
space:
mode:
authorAndrea Pretto <[email protected]>2019-04-21 22:55:47 +0100
committerAndrea Pretto <[email protected]>2019-04-21 23:48:43 +0100
commit200032852be0c66b978c875a8edf0eca1f08b901 (patch)
tree11d45b4470c104f44b237540164bef54cdb55cd9 /crates/ra_hir/src/source_binder.rs
parent914421495835380b96e0016763fda6eff31a8179 (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/source_binder.rs')
-rw-r--r--crates/ra_hir/src/source_binder.rs6
1 files changed, 1 insertions, 5 deletions
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
20use crate::{ 20use 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,