Searched refs:existingFile (Results 1 – 4 of 4) sorted by relevance
| /third_party/node/test/parallel/ |
| D | test-fs-error-messages.js | 36 const existingFile = path.join(tmpdir.path, 'existingFile.js'); constant 41 fs.writeFileSync(existingFile, 'test', 'utf-8'); 220 assert.strictEqual(existingFile, err.path); 224 `EEXIST: file already exists, link '${existingFile}' -> ` + 232 fs.link(existingFile, existingFile2, common.mustCall(validateError)); 235 () => fs.linkSync(existingFile, existingFile2), 243 assert.strictEqual(existingFile, err.path); 247 `EEXIST: file already exists, symlink '${existingFile}' -> ` + 255 fs.symlink(existingFile, existingFile2, common.mustCall(validateError)); 258 () => fs.symlinkSync(existingFile, existingFile2), [all …]
|
| /third_party/typescript/src/compiler/ |
| D | program.ts | 2860 …function reportFileNamesDifferOnlyInCasingError(fileName: string, existingFile: SourceFile, reason… 2861 …onToReportErrorOn = !isReferencedFile(reason) && some(fileReasons.get(existingFile.path), isRefere… 2863 …lainingDiagnostic(existingFile, reason, Diagnostics.Already_included_file_name_0_differs_from_file… 2866 …ngDiagnostic(existingFile, reason, Diagnostics.File_name_0_differs_from_already_included_file_name… 3051 const existingFile = filesByNameIgnoreCase!.get(pathLowerCase); constant 3052 if (existingFile) { 3053 reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason); 3255 … const existingFile = getSourceFile(previousResolution.resolvedFileName!)!; constant 3256 if (otherFileText !== existingFile.text) { 3258 existingFile,
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 123135 function reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason) { argument 123136 …oReportErrorOn = !isReferencedFile(reason) && ts.some(fileReasons.get(existingFile.path), isRefere… 123138 …iningDiagnostic(existingFile, reason, ts.Diagnostics.Already_included_file_name_0_differs_from_fil… 123141 …Diagnostic(existingFile, reason, ts.Diagnostics.File_name_0_differs_from_already_included_file_nam… 123312 var existingFile = filesByNameIgnoreCase.get(pathLowerCase); 123313 if (existingFile) { 123314 reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason); 123478 var existingFile = getSourceFile(previousResolution.resolvedFileName); 123479 if (otherFileText !== existingFile.text) { 123480 …addFilePreprocessingFileExplainingDiagnostic(existingFile, reason, ts.Diagnostics.Conflicting_defi…
|
| D | tsc.js | 102191 function reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason) { argument 102192 …oReportErrorOn = !isReferencedFile(reason) && ts.some(fileReasons.get(existingFile.path), isRefere… 102194 …iningDiagnostic(existingFile, reason, ts.Diagnostics.Already_included_file_name_0_differs_from_fil… 102197 …Diagnostic(existingFile, reason, ts.Diagnostics.File_name_0_differs_from_already_included_file_nam… 102343 var existingFile = filesByNameIgnoreCase.get(pathLowerCase); 102344 if (existingFile) { 102345 reportFileNamesDifferOnlyInCasingError(fileName, existingFile, reason); 102492 var existingFile = getSourceFile(previousResolution.resolvedFileName); 102493 if (otherFileText !== existingFile.text) { 102494 …addFilePreprocessingFileExplainingDiagnostic(existingFile, reason, ts.Diagnostics.Conflicting_defi…
|