feat: Add complete PHP language support with trait handling and property extraction

Addresses PHP traits extracted as classes, missing class properties, skipped constants, and invisible trait usage. Adds classifyClassNode to distinguish traits from classes, fixes property extraction for PHP's property_element AST structure (added 4,366 field nodes), and adds visitNode hook for class constants and trait use declarations (increased trait edges from 636 to 1,514). Also improves Liquid schema name handling and file path reference resolution. Verified against Laravel codebase.
This commit is contained in:
Colby McHenry
2026-04-07 13:44:14 -05:00
parent 1b279dcf94
commit f402ab8363
8 changed files with 151 additions and 5 deletions
+7
View File
@@ -369,6 +369,13 @@ export class ReferenceResolver {
if (this.knownNames.has(receiver) || this.knownNames.has(member)) return true;
}
// For path-like references (e.g., "snippets/drawer-menu.liquid"), check the filename
const slashIdx = name.lastIndexOf('/');
if (slashIdx > 0) {
const fileName = name.substring(slashIdx + 1);
if (this.knownNames.has(fileName)) return true;
}
return false;
}
+59
View File
@@ -7,6 +7,61 @@
import { Node } from '../types';
import { UnresolvedRef, ResolvedRef, ResolutionContext } from './types';
/**
* Try to resolve a path-like reference (e.g., "snippets/drawer-menu.liquid")
* by matching the filename against file nodes.
*/
export function matchByFilePath(
ref: UnresolvedRef,
context: ResolutionContext
): ResolvedRef | null {
if (!ref.referenceName.includes('/')) return null;
// Extract the filename from the path
const fileName = ref.referenceName.split('/').pop();
if (!fileName) return null;
// Search for file nodes with this name
const candidates = context.getNodesByName(fileName);
const fileNodes = candidates.filter(n => n.kind === 'file');
if (fileNodes.length === 0) return null;
// Prefer exact path match on qualified_name
const exactMatch = fileNodes.find(n => n.qualifiedName === ref.referenceName || n.filePath === ref.referenceName);
if (exactMatch) {
return {
original: ref,
targetNodeId: exactMatch.id,
confidence: 0.95,
resolvedBy: 'file-path',
};
}
// Fall back to suffix match (e.g., ref="snippets/foo.liquid" matches "src/snippets/foo.liquid")
const suffixMatch = fileNodes.find(n => n.qualifiedName.endsWith(ref.referenceName) || n.filePath.endsWith(ref.referenceName));
if (suffixMatch) {
return {
original: ref,
targetNodeId: suffixMatch.id,
confidence: 0.85,
resolvedBy: 'file-path',
};
}
// If only one file node with this name, use it with lower confidence
if (fileNodes.length === 1) {
return {
original: ref,
targetNodeId: fileNodes[0]!.id,
confidence: 0.7,
resolvedBy: 'file-path',
};
}
return null;
}
/**
* Try to resolve a reference by exact name match
*/
@@ -360,6 +415,10 @@ export function matchReference(
// Try strategies in order of confidence
let result: ResolvedRef | null;
// 0. File path match (e.g., "snippets/drawer-menu.liquid" → file node)
result = matchByFilePath(ref, context);
if (result) return result;
// 1. Qualified name match (highest confidence)
result = matchByQualifiedName(ref, context);
if (result) return result;
+1 -1
View File
@@ -39,7 +39,7 @@ export interface ResolvedRef {
/** Confidence score (0-1) */
confidence: number;
/** How it was resolved */
resolvedBy: 'exact-match' | 'import' | 'qualified-name' | 'framework' | 'fuzzy' | 'instance-method';
resolvedBy: 'exact-match' | 'import' | 'qualified-name' | 'framework' | 'fuzzy' | 'instance-method' | 'file-path';
}
/**