TypeScript/tests/baselines/reference/promiseIdentity2.symbols
Wesley Wigham 5353475fce Always collect type and symbol baselines (#18621)
* Always generate type & symbol baselines

* Accept changed shadowed baselines

* Accept brand new type and symbol baselines

* Allow `getTypeAtLocation` to return undefined in the type writer

* Accept baselines which had missing type information

* Bind container for dynamically names enum members so they may be printed

* Accept type/symbol baselines for enums with computed members

* First pass at reducing typeWriter memory overhead

* Use generators to allow for type and symbol baselines with no cache

* Accept new baselines for tests whose output was fixed by better newline splitting

* Hard cap on number of declarations printed, cache declaration print text

* handle differing newlines better still to handle RWC newlines

* Lower abridging count, accept abridged baselines

* Limit max RWC error output size, limit RWC type and symbol baseline input size

* Move skip logic into type and symbol baseliner to streamline error handling

* Accept removal of empty baselines

* Canonicalize path earlier to handle odd paths in input files

* Do canonicalization earlier still, also ensure parallel perf profiles for different targets do not trample one another

* No need to pathify again
2017-09-22 15:52:04 -07:00

50 lines
2.4 KiB
Text

=== tests/cases/compiler/promiseIdentity2.ts ===
export interface IPromise<T, V> {
>IPromise : Symbol(IPromise, Decl(promiseIdentity2.ts, 0, 0))
>T : Symbol(T, Decl(promiseIdentity2.ts, 0, 26))
>V : Symbol(V, Decl(promiseIdentity2.ts, 0, 28))
then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
>then : Symbol(IPromise.then, Decl(promiseIdentity2.ts, 0, 33))
>U : Symbol(U, Decl(promiseIdentity2.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentity2.ts, 1, 11))
>callback : Symbol(callback, Decl(promiseIdentity2.ts, 1, 15))
>x : Symbol(x, Decl(promiseIdentity2.ts, 1, 26))
>T : Symbol(T, Decl(promiseIdentity2.ts, 0, 26))
>IPromise : Symbol(IPromise, Decl(promiseIdentity2.ts, 0, 0))
>U : Symbol(U, Decl(promiseIdentity2.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentity2.ts, 1, 11))
>IPromise : Symbol(IPromise, Decl(promiseIdentity2.ts, 0, 0))
>U : Symbol(U, Decl(promiseIdentity2.ts, 1, 9))
>W : Symbol(W, Decl(promiseIdentity2.ts, 1, 11))
}
export interface Promise<T, V> {
>Promise : Symbol(Promise, Decl(promiseIdentity2.ts, 2, 1))
>T : Symbol(T, Decl(promiseIdentity2.ts, 3, 25))
>V : Symbol(V, Decl(promiseIdentity2.ts, 3, 27))
then<U, W>(callback: (x: T) => Promise<T, U>): Promise<T, W>;
>then : Symbol(Promise.then, Decl(promiseIdentity2.ts, 3, 32))
>U : Symbol(U, Decl(promiseIdentity2.ts, 4, 9))
>W : Symbol(W, Decl(promiseIdentity2.ts, 4, 11))
>callback : Symbol(callback, Decl(promiseIdentity2.ts, 4, 15))
>x : Symbol(x, Decl(promiseIdentity2.ts, 4, 26))
>T : Symbol(T, Decl(promiseIdentity2.ts, 3, 25))
>Promise : Symbol(Promise, Decl(promiseIdentity2.ts, 2, 1))
>T : Symbol(T, Decl(promiseIdentity2.ts, 3, 25))
>U : Symbol(U, Decl(promiseIdentity2.ts, 4, 9))
>Promise : Symbol(Promise, Decl(promiseIdentity2.ts, 2, 1))
>T : Symbol(T, Decl(promiseIdentity2.ts, 3, 25))
>W : Symbol(W, Decl(promiseIdentity2.ts, 4, 11))
}
// error because T is string in the first declaration, and T is boolean in the second
// Return type and callback return type are ok because T is any in this particular Promise
var x: IPromise<string, number>;
>x : Symbol(x, Decl(promiseIdentity2.ts, 9, 3), Decl(promiseIdentity2.ts, 10, 3))
>IPromise : Symbol(IPromise, Decl(promiseIdentity2.ts, 0, 0))
var x: Promise<any, string>;
>x : Symbol(x, Decl(promiseIdentity2.ts, 9, 3), Decl(promiseIdentity2.ts, 10, 3))
>Promise : Symbol(Promise, Decl(promiseIdentity2.ts, 2, 1))