File: promiseIdentityWithAny.symbols

package info (click to toggle)
node-typescript 2.1.5-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 203,952 kB
  • ctags: 52,987
  • sloc: sh: 11; makefile: 5
file content (45 lines) | stat: -rw-r--r-- 2,313 bytes parent folder | download | duplicates (2)
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 ===
interface IPromise<T, V> {
>IPromise : Symbol(IPromise, Decl(promiseIdentityWithAny.ts, 0, 0))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 0, 19))
>V : Symbol(V, Decl(promiseIdentityWithAny.ts, 0, 21))

    then<U, W>(callback: (x: T) => IPromise<U, W>): IPromise<U, W>;
>then : Symbol(IPromise.then, Decl(promiseIdentityWithAny.ts, 0, 26))
>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, 19))
>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))
}
interface Promise<T, V> {
>Promise : Symbol(Promise, Decl(promiseIdentityWithAny.ts, 2, 1))
>T : Symbol(T, Decl(promiseIdentityWithAny.ts, 3, 18))
>V : Symbol(V, Decl(promiseIdentityWithAny.ts, 3, 20))

    then<U, W>(callback: (x: T) => Promise<any, any>): Promise<any, any>;
>then : Symbol(Promise.then, Decl(promiseIdentityWithAny.ts, 3, 25))
>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, 18))
>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))