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

Method extract_anonymous_class

codegraph-kernel/src/csharp.rs:1098–1131  ·  view source on GitHub ↗

extractAnonymousClass — `new T() { ... }`. The C# grammar never produces a class_body/declaration_list child on object_creation (object initializers are initializer_expression), so this is unreachable — mirrored from the shared TS path like java.rs.

(&mut self, node: Node<'t>, body: Node<'t>)

Source from the content-addressed store, hash-verified

1096 /// (object initializers are initializer_expression), so this is
1097 /// unreachable — mirrored from the shared TS path like java.rs.
1098 fn extract_anonymous_class(&mut self, node: Node<'t>, body: Node<'t>) {
1099 stack_guard!();
1100 let type_node = node
1101 .child_by_field_name("constructor")
1102 .or_else(|| node.child_by_field_name("type"))
1103 .or_else(|| node.child_by_field_name("name"))
1104 .or_else(|| node.named_child(0));
1105 let mut type_name =
1106 type_node.map(|t| self.text(t).to_string()).unwrap_or_else(|| "Object".to_string());
1107 type_name = strip_generic_and_qualifier(&type_name);
1108 if type_name.is_empty() {
1109 type_name = "Object".to_string();
1110 }
1111
1112 let anon_name = format!("<{type_name}$anon@{}>", node.start_position().row + 1);
1113 let Some(row) = self.create_node("class", &anon_name, node, Extra::default()) else {
1114 return;
1115 };
1116 // Bug-for-bug: the TS code uses `startPosition.row` (0-based) as the
1117 // LINE here — the one place it forgets the +1.
1118 let (line, column) = match type_node {
1119 Some(t) => (t.start_position().row as u32, self.col_of(t)),
1120 None => (node.start_position().row as u32, self.col_of(node)),
1121 };
1122 self.push_ref(row, &type_name, edge_kind_index("extends").unwrap(), line, column);
1123
1124 self.stack.push(Scope { row, kind: "class", name: anon_name });
1125 for i in 0..body.named_child_count() {
1126 if let Some(c) = body.named_child(i) {
1127 self.visit_node(c);
1128 }
1129 }
1130 self.stack.pop();
1131 }
1132
1133 /// extractStaticMemberRef — csharp ∈ STATIC_MEMBER_LANGS; C#'s
1134 /// member-access node with the `expression` receiver field.

Callers 2

visit_nodeMethod · 0.45

Calls 8

edge_kind_indexFunction · 0.85
textMethod · 0.65
unwrapMethod · 0.60
create_nodeMethod · 0.45
col_ofMethod · 0.45
push_refMethod · 0.45
visit_nodeMethod · 0.45

Tested by

no test coverage detected