Skip to content

Commit

Permalink
auto merge of rust-lang#6443 : cmr/rust/resolution, r=bstrie
Browse files Browse the repository at this point in the history
When trying to import nonexistent items from existing modules, specify that
that is what happened, rather than just reporting "unresolved name".

Ideally the error would be reported on the span of the import... but I do not see a way to get a span there. Help appreciated 😄
  • Loading branch information
bors committed May 13, 2013
2 parents 1bf2f68 + 2210d2d commit 935b7ba
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 6 deletions.
25 changes: 20 additions & 5 deletions src/librustc/middle/resolve.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2282,25 +2282,27 @@ pub impl Resolver {
}
let i = import_resolution;
let mut resolve_fail = false;
let mut priv_fail = false;
match (i.value_target, i.type_target) {
// If this name wasn't found in either namespace, it's definitely
// unresolved.
(None, None) => { return Failed; }
(None, None) => { resolve_fail = true; }
// If it's private, it's also unresolved.
(Some(t), None) | (None, Some(t)) => {
let bindings = &mut *t.bindings;
match bindings.type_def {
Some(ref type_def) => {
if type_def.privacy == Private {
return Failed;
priv_fail = true;
}
}
_ => ()
}
match bindings.value_def {
Some(ref value_def) => {
if value_def.privacy == Private {
return Failed;
priv_fail = true;
}
}
_ => ()
Expand All @@ -2313,13 +2315,25 @@ pub impl Resolver {
(Some(ref value_def), Some(ref type_def)) =>
if value_def.privacy == Private
&& type_def.privacy == Private {
return Failed;
priv_fail = true;
},
_ => ()
}
}
}
if resolve_fail {
self.session.err(fmt!("unresolved import: there is no `%s` in `%s`",
*self.session.str_of(source),
self.module_to_str(containing_module)));
return Failed;
} else if priv_fail {
self.session.err(fmt!("unresolved import: found `%s` in `%s` but it is private",
*self.session.str_of(source),
self.module_to_str(containing_module)));
return Failed;
}

assert!(import_resolution.outstanding_references >= 1);
import_resolution.outstanding_references -= 1;

Expand Down Expand Up @@ -2491,7 +2505,8 @@ pub impl Resolver {
*segment_name));
return Failed;
}
self.session.span_err(span, ~"unresolved name");
self.session.span_err(span, fmt!("unresolved import: could not find `%s` in \
`%s`.", *segment_name, module_name));
return Failed;
}
Indeterminate => {
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/import2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use baz::zed::bar; //~ ERROR unresolved name
use baz::zed::bar; //~ ERROR unresolved import
//~^ ERROR failed to resolve import

mod baz {}
Expand Down

0 comments on commit 935b7ba

Please sign in to comment.