MCPcopy Index your code
hub / github.com/simstudioai/sim / activeFiles

Method activeFiles

apps/sim/lib/copilot/vfs/workspace-vfs.ts:629–637  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

627 }
628
629 private activeFiles(): Map<string, string> {
630 const filtered = new Map<string, string>()
631 for (const [key, value] of this.files) {
632 if (!this.isRecentlyDeleted(key)) {
633 filtered.set(key, value)
634 }
635 }
636 return filtered
637 }
638
639 private filesForPath(path?: string): Map<string, string> {
640 if (path?.startsWith('recently-deleted')) return this.files

Callers 1

filesForPathMethod · 0.95

Calls 2

isRecentlyDeletedMethod · 0.95
setMethod · 0.65

Tested by

no test coverage detected