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 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
|
=== tests/cases/compiler/partiallyDiscriminantedUnions.ts ===
// Repro from #10586
interface A1 {
type: 'a';
>type : "a"
subtype: 1;
>subtype : 1
}
interface A2 {
type: 'a';
>type : "a"
subtype: 2;
>subtype : 2
foo: number;
>foo : number
}
interface B {
type: 'b';
>type : "b"
}
type AB = A1 | A2 | B;
>AB : AB
const ab: AB = <AB>{};
>ab : AB
><AB>{} : AB
>{} : {}
if (ab.type === 'a') {
>ab.type === 'a' : boolean
>ab.type : "a" | "b"
>ab : AB
>type : "a" | "b"
>'a' : "a"
if (ab.subtype === 2) {
>ab.subtype === 2 : boolean
>ab.subtype : 1 | 2
>ab : A1 | A2
>subtype : 1 | 2
>2 : 2
ab.foo;
>ab.foo : number
>ab : A2
>foo : number
}
}
// Repro from #11185
class Square { kind: "square"; }
>Square : Square
>kind : "square"
class Circle { kind: "circle"; }
>Circle : Circle
>kind : "circle"
type Shape = Circle | Square;
>Shape : Shape
type Shapes = Shape | Array<Shape>;
>Shapes : Shapes
function isShape(s : Shapes): s is Shape {
>isShape : (s: Shapes) => s is Shape
>s : Shapes
return !Array.isArray(s);
>!Array.isArray(s) : boolean
>Array.isArray(s) : boolean
>Array.isArray : (arg: any) => arg is any[]
>Array : ArrayConstructor
>isArray : (arg: any) => arg is any[]
>s : Shapes
}
function fail(s: Shapes) {
>fail : (s: Shapes) => void
>s : Shapes
if (isShape(s)) {
>isShape(s) : boolean
>isShape : (s: Shapes) => s is Shape
>s : Shapes
if (s.kind === "circle") {
>s.kind === "circle" : boolean
>s.kind : "square" | "circle"
>s : Shape
>kind : "square" | "circle"
>"circle" : "circle"
let c: Circle = s;
>c : Circle
>s : Circle
}
}
}
|