Skip to content

Commit

Permalink
Rollup merge of rust-lang#64177 - petrochenkov:curmod, r=matthewjasper
Browse files Browse the repository at this point in the history
resolve: Do not afraid to set current module to enums and traits

After rust-lang@cfbb60b it's ok.

This is likely required for rust-lang#63468 to work correctly, because that PR starts resolving attributes on enum variants.

r? @matthewjasper @c410-f3r
  • Loading branch information
Centril authored Sep 7, 2019
2 parents 4ea7797 + 56f6353 commit 77e1a7c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 9 deletions.
11 changes: 4 additions & 7 deletions src/librustc_resolve/build_reduced_graph.rs
Original file line number Diff line number Diff line change
Expand Up @@ -728,9 +728,10 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {
expansion,
item.span);
self.r.define(parent, ident, TypeNS, (module, vis, sp, expansion));
self.parent_scope.module = module;

for variant in &(*enum_definition).variants {
self.build_reduced_graph_for_variant(variant, module, vis);
self.build_reduced_graph_for_variant(variant, vis);
}
}

Expand Down Expand Up @@ -818,10 +819,8 @@ impl<'a, 'b> BuildReducedGraphVisitor<'a, 'b> {

// Constructs the reduced graph for one variant. Variants exist in the
// type and value namespaces.
fn build_reduced_graph_for_variant(&mut self,
variant: &Variant,
parent: Module<'a>,
vis: ty::Visibility) {
fn build_reduced_graph_for_variant(&mut self, variant: &Variant, vis: ty::Visibility) {
let parent = self.parent_scope.module;
let expn_id = self.parent_scope.expansion;
let ident = variant.ident;

Expand Down Expand Up @@ -1253,9 +1252,7 @@ impl<'a, 'b> Visitor<'b> for BuildReducedGraphVisitor<'a, 'b> {
let expansion = self.parent_scope.expansion;
self.r.define(parent, item.ident, ns, (res, vis, item.span, expansion));

self.parent_scope.module = parent.parent.unwrap(); // nearest normal ancestor
visit::walk_trait_item(self, item);
self.parent_scope.module = parent;
}

fn visit_token(&mut self, t: Token) {
Expand Down
8 changes: 6 additions & 2 deletions src/librustc_resolve/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -535,7 +535,11 @@ impl<'a> ModuleData<'a> {
}

fn nearest_item_scope(&'a self) -> Module<'a> {
if self.is_trait() { self.parent.unwrap() } else { self }
match self.kind {
ModuleKind::Def(DefKind::Enum, ..) | ModuleKind::Def(DefKind::Trait, ..) =>
self.parent.expect("enum or trait module without a parent"),
_ => self,
}
}

fn is_ancestor_of(&self, mut other: &Self) -> bool {
Expand Down Expand Up @@ -1637,7 +1641,7 @@ impl<'a> Resolver<'a> {
}

if let ModuleKind::Block(..) = module.kind {
return Some(module.parent.unwrap());
return Some(module.parent.unwrap().nearest_item_scope());
}

None
Expand Down
14 changes: 14 additions & 0 deletions src/test/ui/resolve/block-with-trait-parent.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// check-pass

trait Trait {
fn method(&self) {
// Items inside a block turn it into a module internally.
struct S;
impl Trait for S {}

// OK, `Trait` is in scope here from method resolution point of view.
S.method();
}
}

fn main() {}

0 comments on commit 77e1a7c

Please sign in to comment.