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 | 3859 const matchedByInclude = getMatchedIncludeSpec(program, fileName); constant 3861 if (!matchedByInclude || !isString(matchedByInclude)) return undefined; 3862 …configFileNode = getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude);
|
/third_party/typescript/lib/ |
D | typingsInstaller.js | 124009 var matchedByInclude = ts.getMatchedIncludeSpec(program, fileName); 124011 if (!matchedByInclude || !ts.isString(matchedByInclude)) 124013 …figFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude); 128332 var matchedByInclude = getMatchedIncludeSpec(program, fileName); 128333 return ts.isString(matchedByInclude) ? 128335 …ails*/ undefined, ts.Diagnostics.Matched_by_include_pattern_0_in_1, matchedByInclude, toFileName(o… 128337 ts.chainDiagnosticMessages(/*details*/ undefined, matchedByInclude ?
|
D | tsc.js | 102985 var matchedByInclude = ts.getMatchedIncludeSpec(program, fileName); 102986 if (!matchedByInclude || !ts.isString(matchedByInclude)) 102988 …figFileNode = ts.getTsConfigPropArrayElementValue(options.configFile, "include", matchedByInclude); 106690 var matchedByInclude = getMatchedIncludeSpec(program, fileName); 106691 return ts.isString(matchedByInclude) ? 106692 …ssages(undefined, ts.Diagnostics.Matched_by_include_pattern_0_in_1, matchedByInclude, toFileName(o… 106693 ts.chainDiagnosticMessages(undefined, matchedByInclude ?
|