(&mut self, ident: &'a Ident)
| 131 | |
| 132 | impl<'a> Visit<'a, Raw> for Visitor<'a> { |
| 133 | fn visit_ident(&mut self, ident: &'a Ident) { |
| 134 | self.seen_idents.push(ident.as_str()); |
| 135 | } |
| 136 | fn visit_item_name(&mut self, item_name: &'a <Raw as AstInfo>::ItemName) { |
| 137 | if let RawItemName::Name(name) = item_name { |
| 138 | for ident in &name.0 { |