(path, extensions, excludes, includes, depth)
| 7432 | } |
| 7433 | } |
| 7434 | function readDirectory(path, extensions, excludes, includes, depth) { |
| 7435 | return ts.matchFiles(path, extensions, excludes, includes, useCaseSensitiveFileNames, process.cwd(), depth, getAccessibleFileSystemEntries, realpath); |
| 7436 | } |
| 7437 | function fileSystemEntryExists(path, entryKind) { |
| 7438 | // Since the error thrown by fs.statSync isn't used, we can avoid collecting a stack trace to improve |
| 7439 | // the CPU time performance. |
nothing calls this directly
no test coverage detected
searching dependent graphs…