fix(extraction): count all file-level-tracked langs (incl .properties) as indexed (#544)

Completes #357. The no-symbol file-level class is yaml/twig/properties, but the
count fix only covered yaml/twig — so a .properties-only project still printed
"No files found to index" even though the files were stored. Introduce a single
isFileLevelOnlyLanguage predicate (the canonical set behind the tree-sitter
no-symbol branch, xml excluded since its MyBatis extractor emits a file node)
and use it at both count sites and the extraction dispatch so the list can't
drift. Adds .properties regression coverage for indexAll() and indexFiles().

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Colby Mchenry
2026-05-28 22:47:33 -05:00
committed by GitHub
co-authored by Claude Opus 4.8
parent 839cf63dcb
commit cdbf451440
5 changed files with 57 additions and 8 deletions
+6 -6
View File
@@ -17,7 +17,7 @@ import {
} from '../types';
import { QueryBuilder } from '../db/queries';
import { extractFromSource } from './tree-sitter';
import { detectLanguage, isSourceFile, isLanguageSupported, initGrammars, loadGrammarsForLanguages } from './grammars';
import { detectLanguage, isSourceFile, isLanguageSupported, isFileLevelOnlyLanguage, initGrammars, loadGrammarsForLanguages } from './grammars';
import { logDebug, logWarn } from '../errors';
import { validatePathWithinRoot, normalizePath } from '../utils';
import ignore, { Ignore } from 'ignore';
@@ -942,11 +942,11 @@ export class ExtractionOrchestrator {
} else if (result.errors.some((e) => e.severity === 'error')) {
filesErrored++;
} else {
// Files with no symbols but no errors (e.g. yaml, twig) are tracked
// at the file level — count them as indexed so the CLI doesn't
// misleadingly report "No files found to index".
// Files with no symbols but no errors (yaml, twig, properties) are
// tracked at the file level — count them as indexed so the CLI
// doesn't misleadingly report "No files found to index".
const lang = detectLanguage(filePath, content);
if (lang === 'yaml' || lang === 'twig') {
if (isFileLevelOnlyLanguage(lang)) {
filesIndexed++;
} else {
filesSkipped++;
@@ -1117,7 +1117,7 @@ export class ExtractionOrchestrator {
filesErrored++;
} else {
const tracked = this.queries.getFileByPath(filePath);
if (tracked && (tracked.language === 'yaml' || tracked.language === 'twig')) {
if (tracked && isFileLevelOnlyLanguage(tracked.language)) {
filesIndexed++;
} else {
filesSkipped++;