* Get cached file data
(filePath: string)
| 358 | * Get cached file data |
| 359 | */ |
| 360 | getFile(filePath: string): FileCache | null { |
| 361 | const normalizedPath = this.toRelativePath(filePath); |
| 362 | return this.files[normalizedPath] || null; |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * Debug: Get info about why a file might be uncached |
no test coverage detected