Searched refs:matchedByInclude (Results 1 – 4 of 4) sorted by relevance
/third_party/typescript/src/compiler/ |
D | watch.ts | 370 const matchedByInclude = getMatchedIncludeSpec(program, fileName); constant 371 return isString(matchedByInclude) ? 375 matchedByInclude, 379 chainDiagnosticMessages(/*details*/ undefined, matchedByInclude ?
|
D | program.ts | 3891 const matchedByInclude = getMatchedIncludeSpec(program, fileName); constant 3893 if (!matchedByInclude || !isString(matchedByInclude)) return undefined; 3894 …configFileNode = getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude);
|
/third_party/typescript/lib/ |
D | tsc.js | 103169 var matchedByInclude = ts.getMatchedIncludeSpec(program, fileName); 103170 if (!matchedByInclude || !ts.isString(matchedByInclude)) 103172 …figFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude); 107009 var matchedByInclude = getMatchedIncludeSpec(program, fileName); 107010 return ts.isString(matchedByInclude) ? 107011 …ssages(undefined, ts.Diagnostics.Matched_by_include_pattern_0_in_1, matchedByInclude, toFileName(o… 107012 ts.chainDiagnosticMessages(undefined, matchedByInclude ?
|
D | typingsInstaller.js | 124211 var matchedByInclude = ts.getMatchedIncludeSpec(program, fileName); 124213 if (!matchedByInclude || !ts.isString(matchedByInclude)) 124215 …figFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude); 128671 var matchedByInclude = getMatchedIncludeSpec(program, fileName); 128672 return ts.isString(matchedByInclude) ? 128674 …ails*/ undefined, ts.Diagnostics.Matched_by_include_pattern_0_in_1, matchedByInclude, toFileName(o… 128676 ts.chainDiagnosticMessages(/*details*/ undefined, matchedByInclude ?
|