Searched refs:matchingIdentifiers (Results 1 – 5 of 5) sorted by relevance
/third_party/typescript/tests/cases/conformance/parser/ecmascript5/RealWorld/ |
D | parserharness.ts | 980 var matchingIdentifiers: Type[] = []; 993 … matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)); 1006 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1007 matchingIdentifiers.push(foundValue); 1016 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1017 matchingIdentifiers.push(foundValue); 1026 if (matchingIdentifiers.length === 0) { 1034 else if (matchingIdentifiers.length > 1) { 1038 return matchingIdentifiers[0];
|
/third_party/typescript/tests/baselines/reference/ |
D | parserharness.js | 980 var matchingIdentifiers: Type[] = []; variable 993 … matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)); 1006 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1007 matchingIdentifiers.push(foundValue); 1016 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1017 matchingIdentifiers.push(foundValue); 1026 if (matchingIdentifiers.length === 0) { 1034 else if (matchingIdentifiers.length > 1) { 1038 return matchingIdentifiers[0]; 2915 var matchingIdentifiers = []; [all …]
|
D | parserharness.types | 3752 var matchingIdentifiers: Type[] = []; 3753 >matchingIdentifiers : Type[] 3841 … matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)); 3842 >matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)) : number 3843 >matchingIdentifiers.push : (...items: Type[]) => number 3844 >matchingIdentifiers : Type[] 3931 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 3932 >!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code ===… 3933 >matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code === … 3934 >matchingIdentifiers.some : (predicate: (value: Type, index: number, array: Type[]) => unknown, thi… [all …]
|
D | parserharness.symbols | 2849 var matchingIdentifiers: Type[] = []; 2850 >matchingIdentifiers : Symbol(matchingIdentifiers, Decl(parserharness.ts, 978, 19)) 2891 … matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)); 2892 >matchingIdentifiers.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --)) 2893 >matchingIdentifiers : Symbol(matchingIdentifiers, Decl(parserharness.ts, 978, 19)) 2942 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 2943 >matchingIdentifiers.some : Symbol(Array.some, Decl(lib.es5.d.ts, --, --)) 2944 >matchingIdentifiers : Symbol(matchingIdentifiers, Decl(parserharness.ts, 978, 19)) 2966 matchingIdentifiers.push(foundValue); 2967 >matchingIdentifiers.push : Symbol(Array.push, Decl(lib.es5.d.ts, --, --)) [all …]
|
D | parserharness.errors.txt | 1146 var matchingIdentifiers: Type[] = []; 1169 … matchingIdentifiers.push(new Type(entries[i].type, code, targetIdentifier)); 1184 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1185 matchingIdentifiers.push(foundValue); 1194 …if (!matchingIdentifiers.some(value => (value.identifier === foundValue.identifier) && (value.code… 1195 matchingIdentifiers.push(foundValue); 1204 if (matchingIdentifiers.length === 0) { 1212 else if (matchingIdentifiers.length > 1) { 1216 return matchingIdentifiers[0];
|