()
| 50 | } |
| 51 | |
| 52 | export async function getFileTree(): Promise<string> { |
| 53 | const root = getWorkspaceRoot(); |
| 54 | const lines: string[] = []; |
| 55 | await buildTree(root, "", 0, lines, { n: 200 }); |
| 56 | return lines.join("\n"); |
| 57 | } |
| 58 | |
| 59 | export function getOpenFiles(): string[] { |
| 60 | const root = getWorkspaceRoot(); |
no test coverage detected