MCPcopy Create free account
hub / github.com/MaterializeInc/materialize / visit_ident

Method visit_ident

src/sql-parser/tests/sqlparser_common.rs:133–135  ·  view source on GitHub ↗
(&mut self, ident: &'a Ident)

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 2

pushMethod · 0.45
as_strMethod · 0.45

Tested by

no test coverage detected