/third_party/typescript/tests/cases/conformance/types/typeRelationships/typeInference/ |
D | genericCallWithOverloadedFunctionTypedArguments2.ts | 36 var r14 = foo7(1, a); // ok variable
|
D | genericCallWithOverloadedConstructorTypedArguments2.ts | 39 var r14 = foo7(1, c); // ok variable
|
D | genericCallWithOverloadedFunctionTypedArguments.ts | 43 …var r14 = foo7(1, a); // any => string (+1 overload) [inferences are made for T, but lambda not co… variable
|
D | genericCallWithOverloadedConstructorTypedArguments.ts | 46 var r14 = foo7(1, c); // new any => string; new(x:any, y?:any) => string variable
|
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeArgumentLists/ |
D | functionConstraintSatisfaction2.ts | 30 var r14 = foo2(b2); variable
|
D | functionConstraintSatisfaction.ts | 46 var r14 = foo(C2); variable
|
/third_party/typescript/tests/cases/conformance/expressions/binaryOperators/additionOperator/ |
D | additionOperatorWithNumberAndEnum.ts | 23 var r14 = c + c; variable
|
D | additionOperatorWithNullValueAndValidOperator.ts | 28 var r14 = null + ''; variable
|
D | additionOperatorWithUndefinedValueAndValidOperator.ts | 28 var r14 = undefined + ''; variable
|
D | additionOperatorWithStringAndEveryType.ts | 30 var r14 = g + x; variable
|
D | additionOperatorWithInvalidOperands.ts | 34 var r14 = b + d; variable
|
D | additionOperatorWithAnyAndEveryType.ts | 33 var r14 = a + E; variable
|
/third_party/typescript/tests/baselines/reference/ |
D | genericCallWithOverloadedConstructorTypedArguments2.js | 40 var r14 = foo7(1, c); // ok variable
|
D | additionOperatorWithNumberAndEnum.js | 24 var r14 = c + c; variable
|
D | additionOperatorWithUndefinedValueAndValidOperator.js | 29 var r14 = undefined + ''; variable
|
D | additionOperatorWithNullValueAndValidOperator.js | 29 var r14 = null + ''; variable
|
D | genericCallWithOverloadedConstructorTypedArguments.js | 47 var r14 = foo7(1, c); // new any => string; new(x:any, y?:any) => string variable
|
D | genericCallWithOverloadedFunctionTypedArguments2.js | 37 var r14 = foo7(1, a); // ok variable
|
D | functionConstraintSatisfaction2.js | 31 var r14 = foo2(b2); variable
|
D | additionOperatorWithTypeParameter.js | 30 var r14 = f + t; variable
|
D | additionOperatorWithStringAndEveryType.js | 31 var r14 = g + x; variable
|
D | additionOperatorWithInvalidOperands.js | 35 var r14 = b + d; variable
|
D | additionOperatorWithAnyAndEveryType.js | 34 var r14 = a + E; variable
|
D | genericCallWithOverloadedFunctionTypedArguments.js | 44 …var r14 = foo7(1, a); // any => string (+1 overload) [inferences are made for T, but lambda not co… variable
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/subtypesAndSuperTypes/ |
D | nullIsSubtypeOfEverythingButUndefined.ts | 53 var r14 = true ? E.A : null; variable 54 var r14 = true ? null : E.A; variable
|