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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
=== tests/cases/compiler/promiseIdentity.ts ===
interface IPromise<T> {
>IPromise : IPromise<T>
>T : T
then<U>(callback: (x: T) => IPromise<U>): IPromise<U>;
>then : <U>(callback: (x: T) => IPromise<U>) => IPromise<U>
>U : U
>callback : (x: T) => IPromise<U>
>x : T
>T : T
>IPromise : IPromise<T>
>U : U
>IPromise : IPromise<T>
>U : U
}
interface Promise<T> {
>Promise : Promise<T>
>T : T
then<U>(callback: (x: T) => Promise<U>): Promise<U>;
>then : <U>(callback: (x: T) => Promise<U>) => Promise<U>
>U : U
>callback : (x: T) => Promise<U>
>x : T
>T : T
>Promise : Promise<T>
>U : U
>Promise : Promise<T>
>U : U
}
var x: IPromise<string>;
>x : IPromise<string>
>IPromise : IPromise<T>
var x: Promise<string>;
>x : IPromise<string>
>Promise : Promise<T>
interface IPromise2<T, V> {
>IPromise2 : IPromise2<T, V>
>T : T
>V : V
then<U, W>(callback: (x: T) => IPromise2<U, W>): IPromise2<W, U>;
>then : <U, W>(callback: (x: T) => IPromise2<U, W>) => IPromise2<W, U>
>U : U
>W : W
>callback : (x: T) => IPromise2<U, W>
>x : T
>T : T
>IPromise2 : IPromise2<T, V>
>U : U
>W : W
>IPromise2 : IPromise2<T, V>
>W : W
>U : U
}
interface Promise2<T, V> {
>Promise2 : Promise2<T, V>
>T : T
>V : V
then<U, W>(callback: (x: V) => Promise2<U, T>): Promise2<T, W>; // Uses V instead of T in callback's parameter
>then : <U, W>(callback: (x: V) => Promise2<U, T>) => Promise2<T, W>
>U : U
>W : W
>callback : (x: V) => Promise2<U, T>
>x : V
>V : V
>Promise2 : Promise2<T, V>
>U : U
>T : T
>Promise2 : Promise2<T, V>
>T : T
>W : W
}
// Ok because T in this particular Promise2 is any, as are all the U and W references.
// Also, the V of Promise2 happens to coincide with the T of IPromise2 (they are both string).
var y: IPromise2<string, number>;
>y : IPromise2<string, number>
>IPromise2 : IPromise2<T, V>
var y: Promise2<any, string>;
>y : IPromise2<string, number>
>Promise2 : Promise2<T, V>
|