TypeScript/tests/baselines/reference/contextualTypingWithGenericSignature.types

26 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/contextualTypingWithGenericSignature.ts ===
// If e is a FunctionExpression or ArrowFunctionExpression with no type parameters and no parameter or return type annotations, and T is a function type with EXACTLY ONE non - generic call signature, then any inferences made for type parameters referenced by the parameters of Ts call signature are fixed(section 4.12.2) and e is processed with the contextual type T, as described in section 4.9.3.
var f2: {
2015-04-13 23:01:57 +02:00
>f2 : <T, U>(x: T, y: U) => T, Symbol(f2, Decl(contextualTypingWithGenericSignature.ts, 2, 3))
2014-08-15 23:33:16 +02:00
<T, U>(x: T, y: U): T
2015-04-13 23:01:57 +02:00
>T : T, Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))
>U : U, Symbol(U, Decl(contextualTypingWithGenericSignature.ts, 3, 7))
>x : T, Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 3, 11))
>T : T, Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))
>y : U, Symbol(y, Decl(contextualTypingWithGenericSignature.ts, 3, 16))
>U : U, Symbol(U, Decl(contextualTypingWithGenericSignature.ts, 3, 7))
>T : T, Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))
2014-08-15 23:33:16 +02:00
};
f2 = (x, y) => { return x }
>f2 = (x, y) => { return x } : (x: any, y: any) => any
2015-04-13 23:01:57 +02:00
>f2 : <T, U>(x: T, y: U) => T, Symbol(f2, Decl(contextualTypingWithGenericSignature.ts, 2, 3))
2014-08-15 23:33:16 +02:00
>(x, y) => { return x } : (x: any, y: any) => any
2015-04-13 23:01:57 +02:00
>x : any, Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 6, 6))
>y : any, Symbol(y, Decl(contextualTypingWithGenericSignature.ts, 6, 8))
>x : any, Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 6, 6))
2014-08-15 23:33:16 +02:00