File: promiseVoidErrorCallback.js

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (43 lines) | stat: -rw-r--r-- 708 bytes parent folder | download | duplicates (7)
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
//// [promiseVoidErrorCallback.ts]
interface T1 {
    __t1: string;
}

interface T2 {
    __t2: string;
}

interface T3 {
    __t3: string;
}

function f1(): Promise<T1> {
    return Promise.resolve({ __t1: "foo_t1" });
}

function f2(x: T1): T2 {
    return { __t2: x.__t1 + ":foo_21" };
}

var x3 = f1()
    .then(f2, (e: Error) => {
    throw e;
})
    .then((x: T2) => {
    return { __t3: x.__t2 + "bar" };
});

//// [promiseVoidErrorCallback.js]
function f1() {
    return Promise.resolve({ __t1: "foo_t1" });
}
function f2(x) {
    return { __t2: x.__t1 + ":foo_21" };
}
var x3 = f1()
    .then(f2, (e) => {
    throw e;
})
    .then((x) => {
    return { __t3: x.__t2 + "bar" };
});