Skip to content

Commit fb7ba47

Browse files
committed
Pass crate attributes in visit.rs
1 parent 67a0d27 commit fb7ba47

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

src/librustc/lint/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1055,7 +1055,7 @@ impl<'a> ast_visit::Visitor<'a> for EarlyContext<'a> {
10551055
run_lints!(self, check_ident, early_passes, sp, id);
10561056
}
10571057

1058-
fn visit_mod(&mut self, m: &'a ast::Mod, s: Span, n: ast::NodeId) {
1058+
fn visit_mod(&mut self, m: &'a ast::Mod, s: Span, _a: &[ast::Attribute], n: ast::NodeId) {
10591059
run_lints!(self, check_mod, early_passes, m, s, n);
10601060
ast_visit::walk_mod(self, m);
10611061
run_lints!(self, check_mod_post, early_passes, m, s, n);

src/librustc_passes/hir_stats.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ impl<'v> hir_visit::Visitor<'v> for StatCollector<'v> {
252252

253253
impl<'v> ast_visit::Visitor<'v> for StatCollector<'v> {
254254

255-
fn visit_mod(&mut self, m: &'v ast::Mod, _s: Span, _n: NodeId) {
255+
fn visit_mod(&mut self, m: &'v ast::Mod, _s: Span, _a: &[ast::Attribute], _n: NodeId) {
256256
self.record("Mod", Id::None, m);
257257
ast_visit::walk_mod(self, m)
258258
}

src/librustc_save_analysis/dump_visitor.rs

+3-5
Original file line numberDiff line numberDiff line change
@@ -1211,7 +1211,7 @@ impl<'l, 'tcx: 'l, 'll, D: Dump + 'll> DumpVisitor<'l, 'tcx, 'll, D> {
12111211
}
12121212

12131213
impl<'l, 'tcx: 'l, 'll, D: Dump +'ll> Visitor<'l> for DumpVisitor<'l, 'tcx, 'll, D> {
1214-
fn visit_mod(&mut self, m: &'l ast::Mod, span: Span, id: NodeId) {
1214+
fn visit_mod(&mut self, m: &'l ast::Mod, span: Span, attrs: &[ast::Attribute], id: NodeId) {
12151215
// Since we handle explicit modules ourselves in visit_item, this should
12161216
// only get called for the root module of a crate.
12171217
assert_eq!(id, ast::CRATE_NODE_ID);
@@ -1229,11 +1229,9 @@ impl<'l, 'tcx: 'l, 'll, D: Dump +'ll> Visitor<'l> for DumpVisitor<'l, 'tcx, 'll,
12291229
filename: filename,
12301230
items: m.items.iter().map(|i| i.id).collect(),
12311231
visibility: Visibility::Public,
1232-
// TODO Visitor doesn't pass us the attibutes.
1233-
docs: String::new(),
1232+
docs: docs_for_attrs(attrs),
12341233
sig: None,
1235-
// TODO Visitor doesn't pass us the attibutes.
1236-
attributes: vec![],
1234+
attributes: attrs.to_owned(),
12371235
}.lower(self.tcx));
12381236
self.nest_scope(id, |v| visit::walk_mod(v, m));
12391237
}

src/libsyntax/util/node_count.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ impl<'ast> Visitor<'ast> for NodeCounter {
3131
self.count += 1;
3232
walk_ident(self, span, ident);
3333
}
34-
fn visit_mod(&mut self, m: &Mod, _s: Span, _n: NodeId) {
34+
fn visit_mod(&mut self, m: &Mod, _s: Span, _a: &[Attribute], _n: NodeId) {
3535
self.count += 1;
3636
walk_mod(self, m)
3737
}

src/libsyntax/visit.rs

+5-3
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ pub trait Visitor<'ast>: Sized {
5656
fn visit_ident(&mut self, span: Span, ident: Ident) {
5757
walk_ident(self, span, ident);
5858
}
59-
fn visit_mod(&mut self, m: &'ast Mod, _s: Span, _n: NodeId) { walk_mod(self, m) }
59+
fn visit_mod(&mut self, m: &'ast Mod, _s: Span, _attrs: &[Attribute], _n: NodeId) {
60+
walk_mod(self, m);
61+
}
6062
fn visit_foreign_item(&mut self, i: &'ast ForeignItem) { walk_foreign_item(self, i) }
6163
fn visit_global_asm(&mut self, ga: &'ast GlobalAsm) { walk_global_asm(self, ga) }
6264
fn visit_item(&mut self, i: &'ast Item) { walk_item(self, i) }
@@ -172,7 +174,7 @@ pub fn walk_ident<'a, V: Visitor<'a>>(visitor: &mut V, span: Span, ident: Ident)
172174
}
173175

174176
pub fn walk_crate<'a, V: Visitor<'a>>(visitor: &mut V, krate: &'a Crate) {
175-
visitor.visit_mod(&krate.module, krate.span, CRATE_NODE_ID);
177+
visitor.visit_mod(&krate.module, krate.span, &krate.attrs, CRATE_NODE_ID);
176178
walk_list!(visitor, visit_attribute, &krate.attrs);
177179
}
178180

@@ -249,7 +251,7 @@ pub fn walk_item<'a, V: Visitor<'a>>(visitor: &mut V, item: &'a Item) {
249251
item.id)
250252
}
251253
ItemKind::Mod(ref module) => {
252-
visitor.visit_mod(module, item.span, item.id)
254+
visitor.visit_mod(module, item.span, &item.attrs, item.id)
253255
}
254256
ItemKind::ForeignMod(ref foreign_module) => {
255257
walk_list!(visitor, visit_foreign_item, &foreign_module.items);

src/libsyntax_ext/proc_macro_registrar.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ impl<'a> Visitor<'a> for CollectProcMacros<'a> {
329329
visit::walk_item(self, item);
330330
}
331331

332-
fn visit_mod(&mut self, m: &'a ast::Mod, _s: Span, id: NodeId) {
332+
fn visit_mod(&mut self, m: &'a ast::Mod, _s: Span, _a: &[ast::Attribute], id: NodeId) {
333333
let mut prev_in_root = self.in_root;
334334
if id != ast::CRATE_NODE_ID {
335335
prev_in_root = mem::replace(&mut self.in_root, false);

0 commit comments

Comments
 (0)