* Gets stats for a specific path. * @param {string} filePath The file path * @returns {Stats|null}
(filePath)
| 232 | * @returns {Stats|null} |
| 233 | */ |
| 234 | #getStatsFor(filePath) { |
| 235 | try { |
| 236 | return this.#vfs.statSync(filePath); |
| 237 | } catch { |
| 238 | return null; |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | /** |
| 243 | * Builds the list of files to track for recursive watching. |
no test coverage detected