File: contextualTypingWithGenericSignature.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 1,388 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
=== 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 T’s 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: {
>f2 : Symbol(f2, Decl(contextualTypingWithGenericSignature.ts, 2, 3))

    <T, U>(x: T, y: U): T
>T : Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))
>U : Symbol(U, Decl(contextualTypingWithGenericSignature.ts, 3, 7))
>x : Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 3, 11))
>T : Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))
>y : Symbol(y, Decl(contextualTypingWithGenericSignature.ts, 3, 16))
>U : Symbol(U, Decl(contextualTypingWithGenericSignature.ts, 3, 7))
>T : Symbol(T, Decl(contextualTypingWithGenericSignature.ts, 3, 5))

};

f2 = (x, y) => { return x }
>f2 : Symbol(f2, Decl(contextualTypingWithGenericSignature.ts, 2, 3))
>x : Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 6, 6))
>y : Symbol(y, Decl(contextualTypingWithGenericSignature.ts, 6, 8))
>x : Symbol(x, Decl(contextualTypingWithGenericSignature.ts, 6, 6))