Every TS `public_field_definition` / JS `field_definition` extracted as a
method-kind node, so a plain field (`public fonts: Fonts;`) was reported
as callable: class shape was misrepresented, kind-based filtering was
defeated, and bare-name call resolution landed on data fields — typeorm's
boolean `ColumnMetadata::isArray` field was soaking up Array.isArray(...)
call edges (685 such wrong edges on typeorm alone).
Classification now follows the VALUE (classifyMethodNode hook, mirroring
resolveBody's callable detection): arrow-function / function-expression
fields and HOF-wrapped ones (`onScroll = throttle(() => {…})`) stay
methods with their bodies walked; everything else becomes a property that
keeps its type-annotation references edge, visibility, static-ness, and
decorators. Field initializers are now walked too (`history =
createHistory()` attributes the call to the property — previously
invisible), and JS class fields — whose name lives in the grammar's
`property` field, so they never extracted a symbol at all — now appear in
the graph (resolveName on the JS extractor).
With fields correctly kinded, `this.X` callback registration is re-enabled
for TS/JS (removed in #807 because field pseudo-methods made it mostly
wrong): `this.<member>` candidates resolve CLASS-SCOPED
(resolveThisMemberFnRef) — the target must be a function/method sharing
the from-symbol's qualified-name class prefix, same file, no fallback —
so `addEventListener("online", this.onOfflineStatusToggle)` and API-object
wiring (`{ mutateElement: this.mutateElement }`) produce registration
edges to the enclosing class's own method, while `this.fonts` (a
property) and inherited/unknown members yield no edge.
A/B (baseline = #807 main): excalidraw / typeorm / express — node counts
identical on all three; kinds shift method→property only (typeorm: exactly
7,406 swapped; excalidraw also corrects 5 anonymous-class mock fields that
were function-kind); every one of the 736 dropped call edges targeted a
node that is now a property (calls into data fields — verified 100%);
gains are retargets to real callables, initializer-call attributions, and
+74/+7 class-scoped this.X registration edges (sampled: addEventListener/
removeEventListener wiring, imperative-API method maps). Full suite green
(1386).
EXTRACTION_VERSION 19 → 20 (re-index to benefit).
Closes #808
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
co-authored by
Claude Opus 4.8
parent
8a114ba53c
commit
38eb4e688c
@@ -473,11 +473,14 @@ export class TreeSitterExtractor {
|
||||
// variable; see FnRefSpec.ungatedModes). Local initializers and
|
||||
// everything else require a same-file/import match.
|
||||
const skipGate = ungated?.has(c.mode) === true && atFileScope;
|
||||
// Qualified C++ member-pointers (`Widget::on_click`) gate on the member
|
||||
// name; everything else on the full name.
|
||||
const gateName = c.name.includes('::')
|
||||
? c.name.slice(c.name.lastIndexOf('::') + 2)
|
||||
: c.name;
|
||||
// Qualified C++ member-pointers (`Widget::on_click`) and TS/JS
|
||||
// `this.<member>` candidates gate on the member name; everything else
|
||||
// on the full name.
|
||||
const gateName = c.name.startsWith('this.')
|
||||
? c.name.slice(5)
|
||||
: c.name.includes('::')
|
||||
? c.name.slice(c.name.lastIndexOf('::') + 2)
|
||||
: c.name;
|
||||
if (!skipGate && !definedHere.has(gateName) && !importedNames.has(gateName)) {
|
||||
continue;
|
||||
}
|
||||
@@ -564,8 +567,30 @@ export class TreeSitterExtractor {
|
||||
}
|
||||
// Check for method declarations (only if not already handled by functionTypes)
|
||||
else if (this.extractor.methodTypes.includes(nodeType)) {
|
||||
this.extractMethod(node);
|
||||
skipChildren = true; // extractMethod visits children via visitFunctionBody
|
||||
// TS/JS class fields parse as a methodTypes node; only function-valued
|
||||
// fields are methods — a plain field (`public fonts: Fonts;`) is a
|
||||
// property (#808). classifyMethodNode is absent for other languages.
|
||||
if (this.extractor.classifyMethodNode?.(node) === 'property') {
|
||||
const propNode = this.extractProperty(node);
|
||||
// Walk the initializer so its calls/instantiations attribute to the
|
||||
// property (`history = createHistory()` → history calls
|
||||
// createHistory). The old field-as-method path never walked these
|
||||
// (resolveBody only resolves function bodies), so this is additive.
|
||||
const valueNode = getChildByField(node, 'value');
|
||||
if (propNode && valueNode) {
|
||||
this.nodeStack.push(propNode.id);
|
||||
this.visitFunctionBody(valueNode, '');
|
||||
this.nodeStack.pop();
|
||||
}
|
||||
// A field initializer can also register callbacks
|
||||
// (`static handlers = { click: onClick }`) — scan it for
|
||||
// function-as-value candidates (capture-only, halts at functions).
|
||||
this.scanFnRefSubtree(node, 0);
|
||||
skipChildren = true;
|
||||
} else {
|
||||
this.extractMethod(node);
|
||||
skipChildren = true; // extractMethod visits children via visitFunctionBody
|
||||
}
|
||||
}
|
||||
// Check for interface/protocol/trait declarations
|
||||
else if (this.extractor.interfaceTypes.includes(nodeType)) {
|
||||
@@ -1302,27 +1327,41 @@ export class TreeSitterExtractor {
|
||||
* Extract a class property declaration (e.g. C# `public string Name { get; set; }`).
|
||||
* Extracts as 'property' kind node inside the owning class.
|
||||
*/
|
||||
private extractProperty(node: SyntaxNode): void {
|
||||
if (!this.extractor) return;
|
||||
private extractProperty(node: SyntaxNode): Node | null {
|
||||
if (!this.extractor) return null;
|
||||
|
||||
const docstring = getPrecedingDocstring(node, this.source);
|
||||
const visibility = this.extractor.getVisibility?.(node);
|
||||
const isStatic = this.extractor.isStatic?.(node) ?? false;
|
||||
|
||||
const hookName = this.extractor.extractPropertyName?.(node, this.source);
|
||||
// JS `field_definition` names its key the `property` field (TS uses
|
||||
// `name`) — try both before the generic identifier scan (#808).
|
||||
const nameNode = hookName
|
||||
? null
|
||||
: getChildByField(node, 'name') || node.namedChildren.find(c => c.type === 'identifier');
|
||||
: getChildByField(node, 'name') ||
|
||||
getChildByField(node, 'property') ||
|
||||
node.namedChildren.find(c => c.type === 'identifier');
|
||||
const name = hookName ?? (nameNode ? getNodeText(nameNode, this.source) : null);
|
||||
if (!name) return;
|
||||
if (!name) return null;
|
||||
|
||||
// Get property type from the type child (first named child that isn't modifier or identifier)
|
||||
const typeNode = node.namedChildren.find(
|
||||
c => c.type !== 'modifier' && c.type !== 'modifiers'
|
||||
&& c.type !== 'identifier' && c.type !== 'accessor_list'
|
||||
&& c.type !== 'accessors' && c.type !== 'equals_value_clause'
|
||||
);
|
||||
const typeText = typeNode ? getNodeText(typeNode, this.source) : undefined;
|
||||
// Get property type. TS/JS field definitions carry an explicit `type`
|
||||
// field (a `type_annotation`); their other named children are the name
|
||||
// and the initializer VALUE, which the generic finder below would
|
||||
// wrongly pick — so fields use the type field only (#808). Other
|
||||
// languages (C# property_declaration) keep the generic scan.
|
||||
const isTsJsField =
|
||||
node.type === 'public_field_definition' || node.type === 'field_definition';
|
||||
const typeNode = isTsJsField
|
||||
? getChildByField(node, 'type')
|
||||
: node.namedChildren.find(
|
||||
c => c.type !== 'modifier' && c.type !== 'modifiers'
|
||||
&& c.type !== 'identifier' && c.type !== 'accessor_list'
|
||||
&& c.type !== 'accessors' && c.type !== 'equals_value_clause'
|
||||
);
|
||||
const typeText = typeNode
|
||||
? getNodeText(typeNode, this.source).replace(/^:\s*/, '')
|
||||
: undefined;
|
||||
const signature = typeText ? `${typeText} ${name}` : name;
|
||||
|
||||
const propNode = this.createNode('property', name, node, {
|
||||
@@ -1341,6 +1380,7 @@ export class TreeSitterExtractor {
|
||||
// `type_annotation` children; the C# branch walks the `type` field.
|
||||
this.extractTypeAnnotations(node, propNode.id);
|
||||
}
|
||||
return propNode;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user