Rename extract_source_code_definitions_top_level to view_source_code_definitions_top_level and update Announcement

This commit is contained in:
Saoud Rizwan
2024-07-31 10:10:04 -04:00
parent 3daca3d68f
commit 838a3ae10f
8 changed files with 22 additions and 20 deletions

View File

@@ -4,7 +4,7 @@ import * as path from "path"
import { LanguageParser, loadRequiredLanguageParsers } from "./languageParser"
// TODO: implement caching behavior to avoid having to keep analyzing project for new tasks.
export async function parseSourceCodeForDefinitions(dirPath: string): Promise<string> {
export async function parseSourceCodeForDefinitionsTopLevel(dirPath: string): Promise<string> {
// Get all files at top level (not gitignored)
const allFiles = await listFiles(dirPath, false)