-
Notifications
You must be signed in to change notification settings - Fork 12.8k
/
Copy pathdiscriminantPropertyInference.js
62 lines (52 loc) · 1.21 KB
/
discriminantPropertyInference.js
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
//// [discriminantPropertyInference.ts]
// Repro from #41759
type DiscriminatorTrue = {
disc: true;
cb: (x: string) => void;
}
type DiscriminatorFalse = {
disc?: false;
cb: (x: number) => void;
}
type Props = DiscriminatorTrue | DiscriminatorFalse;
declare function f(options: DiscriminatorTrue | DiscriminatorFalse): any;
// simple inference
f({
disc: true,
cb: s => parseInt(s)
});
// simple inference
f({
disc: false,
cb: n => n.toFixed()
});
// simple inference when strict-null-checks are enabled
f({
disc: undefined,
cb: n => n.toFixed()
});
// requires checking type information since discriminator is missing from object
f({
cb: n => n.toFixed()
});
//// [discriminantPropertyInference.js]
// Repro from #41759
// simple inference
f({
disc: true,
cb: function (s) { return parseInt(s); }
});
// simple inference
f({
disc: false,
cb: function (n) { return n.toFixed(); }
});
// simple inference when strict-null-checks are enabled
f({
disc: undefined,
cb: function (n) { return n.toFixed(); }
});
// requires checking type information since discriminator is missing from object
f({
cb: function (n) { return n.toFixed(); }
});