File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -10105,14 +10105,15 @@ export const emptyFileSystemEntries: FileSystemEntries = {
10105
10105
} ;
10106
10106
10107
10107
/**
10108
- * patternOrStrings contains both patterns (containing "*") and regular strings.
10108
+ * `parsedPatterns` contains both patterns (containing "*") and regular strings.
10109
10109
* Return an exact match if possible, or a pattern match, or undefined.
10110
10110
* (These are verified by verifyCompilerOptions to have 0 or 1 "*" characters.)
10111
10111
*
10112
10112
* @internal
10113
10113
*/
10114
- export function matchPatternOrExact ( patternOrStrings : ParsedPatterns , candidate : string ) : string | Pattern | undefined {
10115
- const { matchableStringSet, patterns } = patternOrStrings ;
10114
+ export function matchPatternOrExact ( parsedPatterns : ParsedPatterns , candidate : string ) : string | Pattern | undefined {
10115
+ const { matchableStringSet, patterns } = parsedPatterns ;
10116
+
10116
10117
10117
10118
if ( matchableStringSet ?. has ( candidate ) ) {
10118
10119
return candidate ;
You can’t perform that action at this time.
0 commit comments