File: functionExpressionContextualTyping2.types

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (28 lines) | stat: -rw-r--r-- 1,408 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
=== tests/cases/conformance/expressions/contextualTyping/functionExpressionContextualTyping2.ts ===
// A contextual signature S is extracted from a function type T as follows:
//      If T is a function type with exactly one call signature, and if that call signature is non- generic, S is that signature.
//      If T is a union type, let U be the set of element types in T that have call signatures.
//          If each type in U has exactly one call signature and that call signature is non- generic,
//          and if all of the signatures are identical ignoring return types, then S is a signature
//          with the same parameters and a union of the return types.
//      Otherwise, no contextual signature can be extracted from T and S is undefined.

var a0: (n: number, s: string) => number
>a0 : (n: number, s: string) => number
>n : number
>s : string

var a1: typeof a0 | ((n: number, s: string) => string);
>a1 : ((n: number, s: string) => number) | ((n: number, s: string) => string)
>a0 : (n: number, s: string) => number
>n : number
>s : string

a1 = (foo, bar) => { return true; }  // Error
>a1 = (foo, bar) => { return true; } : (foo: number, bar: string) => boolean
>a1 : ((n: number, s: string) => number) | ((n: number, s: string) => string)
>(foo, bar) => { return true; } : (foo: number, bar: string) => boolean
>foo : number
>bar : string
>true : true