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

Method create_node

codegraph-kernel/src/swift.rs:330–426  ·  view source on GitHub ↗
(&mut self, kind: &'static str, name: &str, node: Node<'t>, extra: Extra)

Source from the content-addressed store, hash-verified

328 // --- createNode ------------------------------------------------------------
329
330 fn create_node(&mut self, kind: &'static str, name: &str, node: Node<'t>, extra: Extra) -> Option<u32> {
331 if name.is_empty() {
332 return None;
333 }
334 let start_line = self.line_of(node);
335 let id = ids::node_id(self.file_path, kind, name, start_line);
336 let end_line = node.end_position().row as u32 + 1; // no resolveBody for swift
337
338 let qualified = {
339 let mut parts: Vec<&str> = Vec::new();
340 for s in &self.stack {
341 if s.kind != "file" {
342 parts.push(&s.name);
343 }
344 }
345 let mut qn = parts.join("::");
346 if !qn.is_empty() {
347 qn.push_str("::");
348 }
349 qn.push_str(name);
350 qn
351 };
352
353 let mut flags = BoolFlags::default();
354 if let Some(v) = extra.is_exported {
355 flags.set(FLAG_IS_EXPORTED, v);
356 }
357 if let Some(v) = extra.is_async {
358 flags.set(FLAG_IS_ASYNC, v);
359 }
360 if let Some(v) = extra.is_static {
361 flags.set(FLAG_IS_STATIC, v);
362 }
363 let name_ref = self.arena.put(name);
364 let qn_ref = self.arena.put(&qualified);
365 let id_ref = self.arena.put(&id);
366 let doc_ref = opt_str(&mut self.arena, extra.docstring.as_deref());
367 let sig_ref = opt_str(&mut self.arena, extra.signature.as_deref());
368 let ret_ref = opt_str(&mut self.arena, extra.return_type.as_deref());
369 let row = self.tables.push_node(&NodeRow {
370 kind: node_kind_index(kind).unwrap(),
371 visibility: extra.visibility.unwrap_or(0),
372 flags,
373 start_line,
374 end_line,
375 start_column: self.col_of(node),
376 end_column: self.end_col_of(node),
377 name: name_ref,
378 qualified_name: qn_ref,
379 id: id_ref,
380 docstring: doc_ref,
381 signature: sig_ref,
382 decorators: NONE_STR, // extractModifiers absent — never set from modifiers
383 type_parameters: NONE_STR,
384 return_type: ret_ref,
385 extra_json: NONE_STR,
386 });
387 self.node_ids.push(id);

Callers 11

extract_functionMethod · 0.45
extract_methodMethod · 0.45
extract_classMethod · 0.45
extract_structMethod · 0.45
extract_enumMethod · 0.45
extract_enum_membersMethod · 0.45
extract_interfaceMethod · 0.45
extract_type_aliasMethod · 0.45
extract_variableMethod · 0.45
extract_importMethod · 0.45

Calls 15

node_idFunction · 0.85
node_kind_indexFunction · 0.85
edge_kind_indexFunction · 0.85
utf16_lenFunction · 0.85
push_nodeMethod · 0.80
push_edgeMethod · 0.80
opt_strFunction · 0.70
putMethod · 0.65
unwrapMethod · 0.60
line_ofMethod · 0.45
joinMethod · 0.45
setMethod · 0.45

Tested by

no test coverage detected