(relativePath: string, _change: WorkspaceFileChange)
| 545 | const FILE_BROWSER_EXTENSIONS = /\.(mdx?|txt|html?)$/i; |
| 546 | |
| 547 | function includeWorkspaceFile(relativePath: string, _change: WorkspaceFileChange): boolean { |
| 548 | return FILE_BROWSER_EXTENSIONS.test(relativePath) && !isFileBrowserExcludedPath(relativePath); |
| 549 | } |
| 550 | |
| 551 | async function walkFileBrowserFiles(dir: string, root: string, files: Set<string>): Promise<void> { |
| 552 | let entries; |
nothing calls this directly
no test coverage detected