Implement layered maps and context retrieval

This commit is contained in:
2026-06-11 12:56:18 +02:00
parent 010e4b83eb
commit c6064f8d94
35 changed files with 4410 additions and 383 deletions
+1 -1
View File
@@ -264,7 +264,7 @@ function extractCallChain(node: SyntaxNode): string | null {
node.type === "property_identifier" ||
node.type === "type_identifier"
) {
return node.text;
return node.text.replace(/\s+/g, " ").trim();
}
if (node.type === "call" || node.type === "call_expression") {
const func = node.childForFieldName?.("function");