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

Method push_ref_at

codegraph-kernel/src/python.rs:165–183  ·  view source on GitHub ↗
(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node)

Source from the content-addressed store, hash-verified

163 }
164
165 fn push_ref_at(&mut self, from_row: u32, name: &str, kind_code: u8, node: Node) {
166 let name_ref = self.arena.put(name);
167 self.tables.push_ref(&RefRow {
168 from_idx: from_row,
169 kind: kind_code,
170 line: self.line_of(node),
171 column: self.col_of(node),
172 reference_name: name_ref,
173 candidates: NONE_STR,
174 from_id_str: NONE_STR,
175 });
176 if kind_code == edge_kind_index("imports").unwrap() {
177 if util::simple_name().is_match(name) {
178 self.imported_names.insert(name.to_string());
179 } else if let Some(c) = util::qualified_import().captures(name) {
180 self.imported_names.insert(c[1].to_string());
181 }
182 }
183 }
184
185 fn create_node(&mut self, kind: &'static str, name: &str, node: Node<'t>, extra: Extra) -> Option<u32> {
186 if name.is_empty() {

Callers 4

extract_classMethod · 0.45
extract_importMethod · 0.45
extract_callMethod · 0.45
consider_decoratorMethod · 0.45

Calls 6

edge_kind_indexFunction · 0.85
putMethod · 0.80
unwrapMethod · 0.60
push_refMethod · 0.45
line_ofMethod · 0.45
col_ofMethod · 0.45

Tested by

no test coverage detected