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
|
=== tests/cases/compiler/promiseIdentityWithAny.ts ===
export interface IPromise<T, V> {
>IPromise : Symbol(IPromise, Decl(promiseIdentityWithAny.ts, 0, 0))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 0, 26))
>V : Symbol(V, Decl(promiseIdentityWithAny.ts, 0, 28))
then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
>then : Symbol(IPromise.then, Decl(promiseIdentityWithAny.ts, 0, 33))
>U : Symbol(U, Decl(promiseIdentityWithAny.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentityWithAny.ts, 1, 11))
>callback : Symbol(callback, Decl(promiseIdentityWithAny.ts, 1, 15))
>x : Symbol(x, Decl(promiseIdentityWithAny.ts, 1, 26))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 0, 26))
>IPromise : Symbol(IPromise, Decl(promiseIdentityWithAny.ts, 0, 0))
>U : Symbol(U, Decl(promiseIdentityWithAny.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentityWithAny.ts, 1, 11))
>IPromise : Symbol(IPromise, Decl(promiseIdentityWithAny.ts, 0, 0))
>U : Symbol(U, Decl(promiseIdentityWithAny.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentityWithAny.ts, 1, 11))
}
export interface Promise<T, V> {
>Promise : Symbol(Promise, Decl(promiseIdentityWithAny.ts, 2, 1))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 3, 25))
>V : Symbol(V, Decl(promiseIdentityWithAny.ts, 3, 27))
then<U, W>(callback: (x: T) => Promise<any, any>): Promise<any, any>;
>then : Symbol(Promise.then, Decl(promiseIdentityWithAny.ts, 3, 32))
>U : Symbol(U, Decl(promiseIdentityWithAny.ts, 4, 9))
>W : Symbol(W, Decl(promiseIdentityWithAny.ts, 4, 11))
>callback : Symbol(callback, Decl(promiseIdentityWithAny.ts, 4, 15))
>x : Symbol(x, Decl(promiseIdentityWithAny.ts, 4, 26))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 3, 25))
>Promise : Symbol(Promise, Decl(promiseIdentityWithAny.ts, 2, 1))
>Promise : Symbol(Promise, Decl(promiseIdentityWithAny.ts, 2, 1))
}
// Should be ok because signature type parameters get erased to any
var x: IPromise<string, number>;
>x : Symbol(x, Decl(promiseIdentityWithAny.ts, 8, 3), Decl(promiseIdentityWithAny.ts, 9, 3))
>IPromise : Symbol(IPromise, Decl(promiseIdentityWithAny.ts, 0, 0))
var x: Promise<string, boolean>;
>x : Symbol(x, Decl(promiseIdentityWithAny.ts, 8, 3), Decl(promiseIdentityWithAny.ts, 9, 3))
>Promise : Symbol(Promise, Decl(promiseIdentityWithAny.ts, 2, 1))
|