TypeScript/tests/baselines/reference/inferentialTypingWithFunctionTypeZip.types

52 lines
3.2 KiB
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/inferentialTypingWithFunctionTypeZip.ts ===
var pair: <T, S>(x: T) => (y: S) => { x: T; y: S; }
2015-04-13 23:01:57 +02:00
>pair : <T, S>(x: T) => (y: S) => { x: T; y: S; }, Symbol(pair, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 3))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 11))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 13))
>x : T, Symbol(x, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 17))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 11))
>y : S, Symbol(y, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 27))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 13))
>x : T, Symbol(x, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 37))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 11))
>y : S, Symbol(y, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 43))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 13))
2014-08-15 23:33:16 +02:00
var zipWith: <T, S, U>(a: T[], b: S[], f: (x: T) => (y: S) => U) => U[];
2015-04-13 23:01:57 +02:00
>zipWith : <T, S, U>(a: T[], b: S[], f: (x: T) => (y: S) => U) => U[], Symbol(zipWith, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 3))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 14))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 16))
>U : U, Symbol(U, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 19))
>a : T[], Symbol(a, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 23))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 14))
>b : S[], Symbol(b, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 30))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 16))
>f : (x: T) => (y: S) => U, Symbol(f, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 38))
>x : T, Symbol(x, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 43))
>T : T, Symbol(T, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 14))
>y : S, Symbol(y, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 53))
>S : S, Symbol(S, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 16))
>U : U, Symbol(U, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 19))
>U : U, Symbol(U, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 19))
2014-08-15 23:33:16 +02:00
var result = zipWith([1, 2], ['a', 'b'], pair);
2015-04-13 23:01:57 +02:00
>result : { x: number; y: {}; }[], Symbol(result, Decl(inferentialTypingWithFunctionTypeZip.ts, 2, 3))
2014-08-15 23:33:16 +02:00
>zipWith([1, 2], ['a', 'b'], pair) : { x: number; y: {}; }[]
2015-04-13 23:01:57 +02:00
>zipWith : <T, S, U>(a: T[], b: S[], f: (x: T) => (y: S) => U) => U[], Symbol(zipWith, Decl(inferentialTypingWithFunctionTypeZip.ts, 1, 3))
2014-08-15 23:33:16 +02:00
>[1, 2] : number[]
2015-04-13 21:36:11 +02:00
>1 : number
>2 : number
2014-10-13 15:56:58 +02:00
>['a', 'b'] : string[]
2015-04-13 21:36:11 +02:00
>'a' : string
>'b' : string
2015-04-13 23:01:57 +02:00
>pair : <T, S>(x: T) => (y: S) => { x: T; y: S; }, Symbol(pair, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 3))
2014-08-15 23:33:16 +02:00
var i = result[0].x; // number
2015-04-13 23:01:57 +02:00
>i : number, Symbol(i, Decl(inferentialTypingWithFunctionTypeZip.ts, 3, 3))
>result[0].x : number, Symbol(x, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 37))
2014-08-15 23:33:16 +02:00
>result[0] : { x: number; y: {}; }
2015-04-13 23:01:57 +02:00
>result : { x: number; y: {}; }[], Symbol(result, Decl(inferentialTypingWithFunctionTypeZip.ts, 2, 3))
2015-04-13 21:36:11 +02:00
>0 : number
2015-04-13 23:01:57 +02:00
>x : number, Symbol(x, Decl(inferentialTypingWithFunctionTypeZip.ts, 0, 37))
2014-08-15 23:33:16 +02:00