MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / push_ref

Method push_ref

codegraph-kernel/src/csharp.rs:289–307  ·  view source on GitHub ↗
(&mut self, from_row: u32, name: &str, kind_code: u8, line: u32, column: u32)

Source from the content-addressed store, hash-verified

287 }
288
289 fn push_ref(&mut self, from_row: u32, name: &str, kind_code: u8, line: u32, column: u32) {
290 let name_ref = self.arena.put(name);
291 self.tables.push_ref(&RefRow {
292 from_idx: from_row,
293 kind: kind_code,
294 line,
295 column,
296 reference_name: name_ref,
297 candidates: NONE_STR,
298 from_id_str: NONE_STR,
299 });
300 if kind_code == edge_kind_index("imports").unwrap() {
301 if util::simple_name().is_match(name) {
302 self.imported_names.insert(name.to_string());
303 } else if let Some(c) = util::qualified_import().captures(name) {
304 self.imported_names.insert(c[1].to_string());
305 }
306 }
307 }
308
309 fn push_ref_at(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node) {
310 self.push_ref(from_row, name, kind_code, self.line_of(node), self.col_of(node));

Callers 3

push_ref_atMethod · 0.45

Calls 3

edge_kind_indexFunction · 0.85
putMethod · 0.80
unwrapMethod · 0.60

Tested by

no test coverage detected