TypeScript/tests/baselines/reference/promiseType.symbols
2018-05-03 14:18:50 -07:00

1092 lines
52 KiB
Plaintext

=== tests/cases/compiler/promiseType.ts ===
declare var p: Promise<boolean>;
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
declare var x: any;
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
async function A() {
>A : Symbol(A, Decl(promiseType.ts, 1, 19))
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 4, 9))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return a;
>a : Symbol(a, Decl(promiseType.ts, 4, 9))
}
async function B() {
>B : Symbol(B, Decl(promiseType.ts, 6, 1))
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 9, 9))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return 1;
}
async function C() {
>C : Symbol(C, Decl(promiseType.ts, 11, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 15, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return 1;
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 18, 11))
return 'error';
}
}
async function D() {
>D : Symbol(D, Decl(promiseType.ts, 21, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 25, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return 1;
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 28, 11))
}
}
async function E() {
>E : Symbol(E, Decl(promiseType.ts, 30, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 34, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return 1;
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 37, 11))
throw Error();
>Error : Symbol(Error, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
}
}
async function F() {
>F : Symbol(F, Decl(promiseType.ts, 40, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 44, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return 1;
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 47, 11))
return Promise.reject(Error());
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Error : Symbol(Error, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
}
}
async function G() {
>G : Symbol(G, Decl(promiseType.ts, 50, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 54, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return a;
>a : Symbol(a, Decl(promiseType.ts, 54, 13))
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 57, 11))
return;
}
}
async function H() {
>H : Symbol(H, Decl(promiseType.ts, 60, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 64, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return a;
>a : Symbol(a, Decl(promiseType.ts, 64, 13))
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 67, 11))
throw Error();
>Error : Symbol(Error, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
}
}
async function I() {
>I : Symbol(I, Decl(promiseType.ts, 70, 1))
try {
const a = await p;
>a : Symbol(a, Decl(promiseType.ts, 74, 13))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
return a;
>a : Symbol(a, Decl(promiseType.ts, 74, 13))
}
catch (e) {
>e : Symbol(e, Decl(promiseType.ts, 77, 11))
return Promise.reject(Error());
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Error : Symbol(Error, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
}
}
// addresses github issue #4903:
const p00 = p.catch();
>p00 : Symbol(p00, Decl(promiseType.ts, 84, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p01 = p.then();
>p01 : Symbol(p01, Decl(promiseType.ts, 85, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p10 = p.catch(undefined);
>p10 : Symbol(p10, Decl(promiseType.ts, 87, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p11 = p.catch(null);
>p11 : Symbol(p11, Decl(promiseType.ts, 88, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p12 = p.catch(() => 1);
>p12 : Symbol(p12, Decl(promiseType.ts, 89, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p13 = p.catch(() => x);
>p13 : Symbol(p13, Decl(promiseType.ts, 90, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p14 = p.catch(() => undefined);
>p14 : Symbol(p14, Decl(promiseType.ts, 91, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p15 = p.catch(() => null);
>p15 : Symbol(p15, Decl(promiseType.ts, 92, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p16 = p.catch(() => {});
>p16 : Symbol(p16, Decl(promiseType.ts, 93, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p17 = p.catch(() => {throw 1});
>p17 : Symbol(p17, Decl(promiseType.ts, 94, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
const p18 = p.catch(() => Promise.reject(1));
>p18 : Symbol(p18, Decl(promiseType.ts, 95, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p19 = p.catch(() => Promise.resolve(1));
>p19 : Symbol(p19, Decl(promiseType.ts, 96, 5))
>p.catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>catch : Symbol(Promise.catch, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p20 = p.then(undefined);
>p20 : Symbol(p20, Decl(promiseType.ts, 98, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p21 = p.then(null);
>p21 : Symbol(p21, Decl(promiseType.ts, 99, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p22 = p.then(() => 1);
>p22 : Symbol(p22, Decl(promiseType.ts, 100, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p23 = p.then(() => x);
>p23 : Symbol(p23, Decl(promiseType.ts, 101, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p24 = p.then(() => undefined);
>p24 : Symbol(p24, Decl(promiseType.ts, 102, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p25 = p.then(() => null);
>p25 : Symbol(p25, Decl(promiseType.ts, 103, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p26 = p.then(() => {});
>p26 : Symbol(p26, Decl(promiseType.ts, 104, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p27 = p.then(() => {throw 1});
>p27 : Symbol(p27, Decl(promiseType.ts, 105, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p28 = p.then(() => Promise.resolve(1));
>p28 : Symbol(p28, Decl(promiseType.ts, 106, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p29 = p.then(() => Promise.reject(1));
>p29 : Symbol(p29, Decl(promiseType.ts, 107, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p30 = p.then(undefined, undefined);
>p30 : Symbol(p30, Decl(promiseType.ts, 109, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>undefined : Symbol(undefined)
const p31 = p.then(undefined, null);
>p31 : Symbol(p31, Decl(promiseType.ts, 110, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p32 = p.then(undefined, () => 1);
>p32 : Symbol(p32, Decl(promiseType.ts, 111, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p33 = p.then(undefined, () => x);
>p33 : Symbol(p33, Decl(promiseType.ts, 112, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p34 = p.then(undefined, () => undefined);
>p34 : Symbol(p34, Decl(promiseType.ts, 113, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>undefined : Symbol(undefined)
const p35 = p.then(undefined, () => null);
>p35 : Symbol(p35, Decl(promiseType.ts, 114, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p36 = p.then(undefined, () => {});
>p36 : Symbol(p36, Decl(promiseType.ts, 115, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p37 = p.then(undefined, () => {throw 1});
>p37 : Symbol(p37, Decl(promiseType.ts, 116, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p38 = p.then(undefined, () => Promise.resolve(1));
>p38 : Symbol(p38, Decl(promiseType.ts, 117, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p39 = p.then(undefined, () => Promise.reject(1));
>p39 : Symbol(p39, Decl(promiseType.ts, 118, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p40 = p.then(null, undefined);
>p40 : Symbol(p40, Decl(promiseType.ts, 120, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p41 = p.then(null, null);
>p41 : Symbol(p41, Decl(promiseType.ts, 121, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p42 = p.then(null, () => 1);
>p42 : Symbol(p42, Decl(promiseType.ts, 122, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p43 = p.then(null, () => x);
>p43 : Symbol(p43, Decl(promiseType.ts, 123, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p44 = p.then(null, () => undefined);
>p44 : Symbol(p44, Decl(promiseType.ts, 124, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p45 = p.then(null, () => null);
>p45 : Symbol(p45, Decl(promiseType.ts, 125, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p46 = p.then(null, () => {});
>p46 : Symbol(p46, Decl(promiseType.ts, 126, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p47 = p.then(null, () => {throw 1});
>p47 : Symbol(p47, Decl(promiseType.ts, 127, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p48 = p.then(null, () => Promise.resolve(1));
>p48 : Symbol(p48, Decl(promiseType.ts, 128, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p49 = p.then(null, () => Promise.reject(1));
>p49 : Symbol(p49, Decl(promiseType.ts, 129, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p50 = p.then(() => "1", undefined);
>p50 : Symbol(p50, Decl(promiseType.ts, 131, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p51 = p.then(() => "1", null);
>p51 : Symbol(p51, Decl(promiseType.ts, 132, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p52 = p.then(() => "1", () => 1);
>p52 : Symbol(p52, Decl(promiseType.ts, 133, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p53 = p.then(() => "1", () => x);
>p53 : Symbol(p53, Decl(promiseType.ts, 134, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p54 = p.then(() => "1", () => undefined);
>p54 : Symbol(p54, Decl(promiseType.ts, 135, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p55 = p.then(() => "1", () => null);
>p55 : Symbol(p55, Decl(promiseType.ts, 136, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p56 = p.then(() => "1", () => {});
>p56 : Symbol(p56, Decl(promiseType.ts, 137, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p57 = p.then(() => "1", () => {throw 1});
>p57 : Symbol(p57, Decl(promiseType.ts, 138, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p58 = p.then(() => "1", () => Promise.resolve(1));
>p58 : Symbol(p58, Decl(promiseType.ts, 139, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p59 = p.then(() => "1", () => Promise.reject(1));
>p59 : Symbol(p59, Decl(promiseType.ts, 140, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p60 = p.then(() => x, undefined);
>p60 : Symbol(p60, Decl(promiseType.ts, 142, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
>undefined : Symbol(undefined)
const p61 = p.then(() => x, null);
>p61 : Symbol(p61, Decl(promiseType.ts, 143, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p62 = p.then(() => x, () => 1);
>p62 : Symbol(p62, Decl(promiseType.ts, 144, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p63 = p.then(() => x, () => x);
>p63 : Symbol(p63, Decl(promiseType.ts, 145, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p64 = p.then(() => x, () => undefined);
>p64 : Symbol(p64, Decl(promiseType.ts, 146, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
>undefined : Symbol(undefined)
const p65 = p.then(() => x, () => null);
>p65 : Symbol(p65, Decl(promiseType.ts, 147, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p66 = p.then(() => x, () => {});
>p66 : Symbol(p66, Decl(promiseType.ts, 148, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p67 = p.then(() => x, () => {throw 1});
>p67 : Symbol(p67, Decl(promiseType.ts, 149, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p68 = p.then(() => x, () => Promise.resolve(1));
>p68 : Symbol(p68, Decl(promiseType.ts, 150, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p69 = p.then(() => x, () => Promise.reject(1));
>p69 : Symbol(p69, Decl(promiseType.ts, 151, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p70 = p.then(() => undefined, undefined);
>p70 : Symbol(p70, Decl(promiseType.ts, 153, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>undefined : Symbol(undefined)
const p71 = p.then(() => undefined, null);
>p71 : Symbol(p71, Decl(promiseType.ts, 154, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p72 = p.then(() => undefined, () => 1);
>p72 : Symbol(p72, Decl(promiseType.ts, 155, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p73 = p.then(() => undefined, () => x);
>p73 : Symbol(p73, Decl(promiseType.ts, 156, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p74 = p.then(() => undefined, () => undefined);
>p74 : Symbol(p74, Decl(promiseType.ts, 157, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>undefined : Symbol(undefined)
const p75 = p.then(() => undefined, () => null);
>p75 : Symbol(p75, Decl(promiseType.ts, 158, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p76 = p.then(() => undefined, () => {});
>p76 : Symbol(p76, Decl(promiseType.ts, 159, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p77 = p.then(() => undefined, () => {throw 1});
>p77 : Symbol(p77, Decl(promiseType.ts, 160, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p78 = p.then(() => undefined, () => Promise.resolve(1));
>p78 : Symbol(p78, Decl(promiseType.ts, 161, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p79 = p.then(() => undefined, () => Promise.reject(1));
>p79 : Symbol(p79, Decl(promiseType.ts, 162, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p80 = p.then(() => null, undefined);
>p80 : Symbol(p80, Decl(promiseType.ts, 164, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p81 = p.then(() => null, null);
>p81 : Symbol(p81, Decl(promiseType.ts, 165, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p82 = p.then(() => null, () => 1);
>p82 : Symbol(p82, Decl(promiseType.ts, 166, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p83 = p.then(() => null, () => x);
>p83 : Symbol(p83, Decl(promiseType.ts, 167, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p84 = p.then(() => null, () => undefined);
>p84 : Symbol(p84, Decl(promiseType.ts, 168, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p85 = p.then(() => null, () => null);
>p85 : Symbol(p85, Decl(promiseType.ts, 169, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p86 = p.then(() => null, () => {});
>p86 : Symbol(p86, Decl(promiseType.ts, 170, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p87 = p.then(() => null, () => {throw 1});
>p87 : Symbol(p87, Decl(promiseType.ts, 171, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p88 = p.then(() => null, () => Promise.resolve(1));
>p88 : Symbol(p88, Decl(promiseType.ts, 172, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p89 = p.then(() => null, () => Promise.reject(1));
>p89 : Symbol(p89, Decl(promiseType.ts, 173, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const p90 = p.then(() => {}, undefined);
>p90 : Symbol(p90, Decl(promiseType.ts, 175, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p91 = p.then(() => {}, null);
>p91 : Symbol(p91, Decl(promiseType.ts, 176, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p92 = p.then(() => {}, () => 1);
>p92 : Symbol(p92, Decl(promiseType.ts, 177, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p93 = p.then(() => {}, () => x);
>p93 : Symbol(p93, Decl(promiseType.ts, 178, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const p94 = p.then(() => {}, () => undefined);
>p94 : Symbol(p94, Decl(promiseType.ts, 179, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const p95 = p.then(() => {}, () => null);
>p95 : Symbol(p95, Decl(promiseType.ts, 180, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p96 = p.then(() => {}, () => {});
>p96 : Symbol(p96, Decl(promiseType.ts, 181, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p97 = p.then(() => {}, () => {throw 1});
>p97 : Symbol(p97, Decl(promiseType.ts, 182, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const p98 = p.then(() => {}, () => Promise.resolve(1));
>p98 : Symbol(p98, Decl(promiseType.ts, 183, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const p99 = p.then(() => {}, () => Promise.reject(1));
>p99 : Symbol(p99, Decl(promiseType.ts, 184, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pa0 = p.then(() => {throw 1}, undefined);
>pa0 : Symbol(pa0, Decl(promiseType.ts, 186, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pa1 = p.then(() => {throw 1}, null);
>pa1 : Symbol(pa1, Decl(promiseType.ts, 187, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const pa2 = p.then(() => {throw 1}, () => 1);
>pa2 : Symbol(pa2, Decl(promiseType.ts, 188, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const pa3 = p.then(() => {throw 1}, () => x);
>pa3 : Symbol(pa3, Decl(promiseType.ts, 189, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const pa4 = p.then(() => {throw 1}, () => undefined);
>pa4 : Symbol(pa4, Decl(promiseType.ts, 190, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pa5 = p.then(() => {throw 1}, () => null);
>pa5 : Symbol(pa5, Decl(promiseType.ts, 191, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const pa6 = p.then(() => {throw 1}, () => {});
>pa6 : Symbol(pa6, Decl(promiseType.ts, 192, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const pa7 = p.then(() => {throw 1}, () => {throw 1});
>pa7 : Symbol(pa7, Decl(promiseType.ts, 193, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
const pa8 = p.then(() => {throw 1}, () => Promise.resolve(1));
>pa8 : Symbol(pa8, Decl(promiseType.ts, 194, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pa9 = p.then(() => {throw 1}, () => Promise.reject(1));
>pa9 : Symbol(pa9, Decl(promiseType.ts, 195, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pb0 = p.then(() => Promise.resolve("1"), undefined);
>pb0 : Symbol(pb0, Decl(promiseType.ts, 197, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pb1 = p.then(() => Promise.resolve("1"), null);
>pb1 : Symbol(pb1, Decl(promiseType.ts, 198, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb2 = p.then(() => Promise.resolve("1"), () => 1);
>pb2 : Symbol(pb2, Decl(promiseType.ts, 199, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb3 = p.then(() => Promise.resolve("1"), () => x);
>pb3 : Symbol(pb3, Decl(promiseType.ts, 200, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const pb4 = p.then(() => Promise.resolve("1"), () => undefined);
>pb4 : Symbol(pb4, Decl(promiseType.ts, 201, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pb5 = p.then(() => Promise.resolve("1"), () => null);
>pb5 : Symbol(pb5, Decl(promiseType.ts, 202, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb6 = p.then(() => Promise.resolve("1"), () => {});
>pb6 : Symbol(pb6, Decl(promiseType.ts, 203, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb7 = p.then(() => Promise.resolve("1"), () => {throw 1});
>pb7 : Symbol(pb7, Decl(promiseType.ts, 204, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb8 = p.then(() => Promise.resolve("1"), () => Promise.resolve(1));
>pb8 : Symbol(pb8, Decl(promiseType.ts, 205, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pb9 = p.then(() => Promise.resolve("1"), () => Promise.reject(1));
>pb9 : Symbol(pb9, Decl(promiseType.ts, 206, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc0 = p.then(() => Promise.reject("1"), undefined);
>pc0 : Symbol(pc0, Decl(promiseType.ts, 208, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pc1 = p.then(() => Promise.reject("1"), null);
>pc1 : Symbol(pc1, Decl(promiseType.ts, 209, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc2 = p.then(() => Promise.reject("1"), () => 1);
>pc2 : Symbol(pc2, Decl(promiseType.ts, 210, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc3 = p.then(() => Promise.reject("1"), () => x);
>pc3 : Symbol(pc3, Decl(promiseType.ts, 211, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>x : Symbol(x, Decl(promiseType.ts, 1, 11))
const pc4 = p.then(() => Promise.reject("1"), () => undefined);
>pc4 : Symbol(pc4, Decl(promiseType.ts, 212, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>undefined : Symbol(undefined)
const pc5 = p.then(() => Promise.reject("1"), () => null);
>pc5 : Symbol(pc5, Decl(promiseType.ts, 213, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc6 = p.then(() => Promise.reject("1"), () => {});
>pc6 : Symbol(pc6, Decl(promiseType.ts, 214, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc7 = p.then(() => Promise.reject("1"), () => {throw 1});
>pc7 : Symbol(pc7, Decl(promiseType.ts, 215, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
const pc8 = p.then(() => Promise.reject("1"), () => Promise.resolve(1));
>pc8 : Symbol(pc8, Decl(promiseType.ts, 216, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise.resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>resolve : Symbol(PromiseConstructor.resolve, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
const pc9 = p.then(() => Promise.reject("1"), () => Promise.reject(1));
>pc9 : Symbol(pc9, Decl(promiseType.ts, 217, 5))
>p.then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>p : Symbol(p, Decl(promiseType.ts, 0, 11))
>then : Symbol(Promise.then, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise.reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))
>Promise : Symbol(Promise, Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --), Decl(lib.es6.d.ts, --, --))
>reject : Symbol(PromiseConstructor.reject, Decl(lib.es6.d.ts, --, --))