Searched refs:arrayIsEqualTo (Results 1 – 11 of 11) sorted by relevance
| /third_party/typescript/src/testRunner/unittests/config/ |
| D | tsconfigParsing.ts | 40 assert.isTrue(arrayIsEqualTo(parsed.fileNames.sort(), expectedFileList.sort())); 44 assert.isTrue(arrayIsEqualTo(parsed.fileNames.sort(), expectedFileList.sort()));
|
| /third_party/typescript/src/server/ |
| D | typingsCache.ts | 81 return !arrayIsEqualTo(imports1, imports2);
|
| /third_party/typescript/src/services/ |
| D | exportInfoMap.ts | 192 … !arrayIsEqualTo(oldSourceFile.moduleAugmentations, newSourceFile.moduleAugmentations) || 259 … if (!arrayIsEqualTo(oldSourceFile.ambientModuleNames, newSourceFile.ambientModuleNames)) {
|
| /third_party/typescript/src/compiler/ |
| D | program.ts | 764 if (!arrayIsEqualTo(program.getRootFileNames(), rootFileNames)) return false; 769 …if (!arrayIsEqualTo(program.getProjectReferences(), projectReferences, projectReferenceUptoDate)) … 816 …if (!arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newParsedCommandLine.fileNames)) return … 1687 … !arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newResolvedRef.commandLine.fileNames); 1697 … return !arrayIsEqualTo(oldProjectReferences, newReferences, projectReferenceIsEqualTo); 1716 if (!arrayIsEqualTo(oldRootNames, rootNames)) { 1803 …else if (!arrayIsEqualTo(oldSourceFile.libReferenceDirectives, newSourceFile.libReferenceDirective… 1813 …else if (!arrayIsEqualTo(oldSourceFile.referencedFiles, newSourceFile.referencedFiles, fileReferen… 1820 … if (!arrayIsEqualTo(oldSourceFile.imports, newSourceFile.imports, moduleNameIsEqualTo)) { 1824 …else if (!arrayIsEqualTo(oldSourceFile.moduleAugmentations, newSourceFile.moduleAugmentations, mod… [all …]
|
| D | core.ts | 819 …export function arrayIsEqualTo<T>(array1: readonly T[] | undefined, array2: readonly T[] | undefin… function
|
| /third_party/typescript/src/testRunner/unittests/tsbuild/ |
| D | helpers.ts | 419 …if (!arrayIsEqualTo(incrementalReferenceSet, cleanReferenceSet) && !arrayIsEqualTo(incrementalRefe…
|
| /third_party/typescript/src/testRunner/unittests/tsserver/ |
| D | compileOnSave.ts | 23 … arrayIsEqualTo(actualResultSingleProjectFileNameList, expectedResultSingleProjectFileNameList),
|
| /third_party/typescript/src/harness/ |
| D | fourslashImpl.ts | 2458 … if (!ts.arrayIsEqualTo(expected.displayParts, matchingImpl.displayParts, displayPartIsEqualTo)) { 2464 if (!ts.arrayIsEqualTo(expected.parts, actualParts)) {
|
| /third_party/typescript/src/compiler/transformers/ |
| D | es2015.ts | 2039 if (isBlock(body) && arrayIsEqualTo(statements, body.statements)) {
|
| /third_party/typescript/lib/ |
| D | typingsInstaller.js | 887 function arrayIsEqualTo(array1, array2, equalityComparer) { function 902 ts.arrayIsEqualTo = arrayIsEqualTo; 104628 if (ts.isBlock(body) && ts.arrayIsEqualTo(statements, body.statements)) { 121284 if (!ts.arrayIsEqualTo(program.getRootFileNames(), rootFileNames)) 121288 …if (!ts.arrayIsEqualTo(program.getProjectReferences(), projectReferences, projectReferenceUptoDate… 121330 … if (!ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newParsedCommandLine.fileNames)) 122104 … !ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newResolvedRef.commandLine.fileNames); 122113 … return !ts.arrayIsEqualTo(oldProjectReferences, newReferences, ts.projectReferenceIsEqualTo); 122129 if (!ts.arrayIsEqualTo(oldRootNames, rootNames)) { 122210 …else if (!ts.arrayIsEqualTo(oldSourceFile.libReferenceDirectives, newSourceFile.libReferenceDirect… [all …]
|
| D | tsc.js | 795 function arrayIsEqualTo(array1, array2, equalityComparer) { function 810 ts.arrayIsEqualTo = arrayIsEqualTo; 87563 if (ts.isBlock(body) && ts.arrayIsEqualTo(statements, body.statements)) { 100610 if (!ts.arrayIsEqualTo(program.getRootFileNames(), rootFileNames)) 100613 …if (!ts.arrayIsEqualTo(program.getProjectReferences(), projectReferences, projectReferenceUptoDate… 100646 … if (!ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newParsedCommandLine.fileNames)) 101297 … !ts.arrayIsEqualTo(oldResolvedRef.commandLine.fileNames, newResolvedRef.commandLine.fileNames); 101304 … return !ts.arrayIsEqualTo(oldProjectReferences, newReferences, ts.projectReferenceIsEqualTo); 101317 if (!ts.arrayIsEqualTo(oldRootNames, rootNames)) { 101380 …else if (!ts.arrayIsEqualTo(oldSourceFile.libReferenceDirectives, newSourceFile.libReferenceDirect… [all …]
|