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
|
=== tests/cases/compiler/assertionFunctionsCanNarrowByDiscriminant.ts ===
interface Cat {
type: 'cat';
>type : "cat"
canMeow: true;
>canMeow : true
>true : true
}
interface Dog {
type: 'dog';
>type : "dog"
canBark: true;
>canBark : true
>true : true
}
type Animal = Cat | Dog;
>Animal : Cat | Dog
declare function assertEqual<T>(value: any, type: T): asserts value is T;
>assertEqual : <T>(value: any, type: T) => asserts value is T
>value : any
>type : T
const animal = { type: 'cat', canMeow: true } as Animal;
>animal : Animal
>{ type: 'cat', canMeow: true } as Animal : Animal
>{ type: 'cat', canMeow: true } : { type: "cat"; canMeow: true; }
>type : "cat"
>'cat' : "cat"
>canMeow : true
>true : true
assertEqual(animal.type, 'cat' as const);
>assertEqual(animal.type, 'cat' as const) : void
>assertEqual : <T>(value: any, type: T) => asserts value is T
>animal.type : "cat" | "dog"
>animal : Animal
>type : "cat" | "dog"
>'cat' as const : "cat"
>'cat' : "cat"
animal.canMeow; // since is cat, should not be an error
>animal.canMeow : true
>animal : Cat
>canMeow : true
const animalOrUndef = { type: 'cat', canMeow: true } as Animal | undefined;
>animalOrUndef : Animal | undefined
>{ type: 'cat', canMeow: true } as Animal | undefined : Animal | undefined
>{ type: 'cat', canMeow: true } : { type: "cat"; canMeow: true; }
>type : "cat"
>'cat' : "cat"
>canMeow : true
>true : true
assertEqual(animalOrUndef?.type, 'cat' as const);
>assertEqual(animalOrUndef?.type, 'cat' as const) : void
>assertEqual : <T>(value: any, type: T) => asserts value is T
>animalOrUndef?.type : "cat" | "dog" | undefined
>animalOrUndef : Animal | undefined
>type : "cat" | "dog" | undefined
>'cat' as const : "cat"
>'cat' : "cat"
animalOrUndef.canMeow; // since is cat, should not be an error
>animalOrUndef.canMeow : true
>animalOrUndef : Cat
>canMeow : true
|