TypeScript/tests/baselines/reference/promiseIdentity.types
2014-08-18 19:56:03 -07:00

90 lines
1.9 KiB
Plaintext

=== 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>