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

Method push_ref

codegraph-kernel/src/java.rs:272–290  ·  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

270 }
271
272 fn push_ref(&mut self, from_row: u32, name: &str, kind_code: u8, line: u32, column: u32) {
273 let name_ref = self.arena.put(name);
274 self.tables.push_ref(&RefRow {
275 from_idx: from_row,
276 kind: kind_code,
277 line,
278 column,
279 reference_name: name_ref,
280 candidates: NONE_STR,
281 from_id_str: NONE_STR,
282 });
283 if kind_code == edge_kind_index("imports").unwrap() {
284 if util::simple_name().is_match(name) {
285 self.imported_names.insert(name.to_string());
286 } else if let Some(c) = util::qualified_import().captures(name) {
287 self.imported_names.insert(c[1].to_string());
288 }
289 }
290 }
291
292 fn push_ref_at(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node) {
293 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