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

Method push_ref

codegraph-kernel/src/kotlin.rs:275–293  ·  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

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

Callers 2

push_ref_atMethod · 0.45

Calls 3

edge_kind_indexFunction · 0.85
putMethod · 0.80
unwrapMethod · 0.60

Tested by

no test coverage detected