You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
3.7.5
3.9.x-dev.20200212 (playground as of 2/13/2020)
Search Terms:
discriminate union, if else, switch statement, object lookup
Code
typeTestA={type: 'testA';bananas: 3;};typeTestB={type: 'testB';apples: 5;};typeAllTests=TestA|TestB;typeMapOfAllTests=Record<string,AllTests>;constdoTestingStuff=(mapOfTests: MapOfAllTests,ids: string[])=>{ids.forEach(id=>{// if we type this as "AllTests" instead of leaving it non-typed, the compiler warning// below also disappears..!?lettest;test=mapOfTests[id];// at this point, TS considers "test" to be "AllTests",// so, discriminate union tests should work..?if(test.type==='testA'){// Property 'bananas' does not exist on type 'AllTests'.// - Property 'bananas' does not exist on type 'TestB'.console.log(test.bananas);}switch(test.type){case'testA': {// no compiler warningconsole.log(test.bananas);}}});};
Expected behavior:
I'm not entirely sure what the right behavior is. At the point of the discriminate union if/else check, TypeScript considers test to be AllTests. So, I would imagine that it should work as it does in he switch case. But maybe the actual issue is that I don't explicitly define what item is in the beginning?
Actual behavior:
In the if/else check for (test.type === 'testA'), test.bananas has a compiler warning complaining that bananas may not exist on TypeB.
We're somewhat inconsistent in our narrowing logic for discriminated unions. Apparently we require the declared type of a reference to be a union type before we narrow by discriminants, except in switch statements we'll happily narrow as long as the computed type is a union. There's really no reason for this difference.
TypeScript Version:
Confirmed in:
3.7.5
3.9.x-dev.20200212 (playground as of 2/13/2020)
Search Terms:
discriminate union, if else, switch statement, object lookup
Code
Expected behavior:
I'm not entirely sure what the right behavior is. At the point of the discriminate union if/else check, TypeScript considers
test
to beAllTests
. So, I would imagine that it should work as it does in he switch case. But maybe the actual issue is that I don't explicitly define whatitem
is in the beginning?Actual behavior:
In the if/else check for
(test.type === 'testA')
,test.bananas
has a compiler warning complaining thatbananas
may not exist onTypeB
.Playground Link:
http://www.typescriptlang.org/play/?ts=3.9.0-dev.20200212&ssl=1&ssc=1&pln=34&pc=1#code/C4TwDgpgBAKhDOwCCUC8UDeAoKVSQC4oByYBZYgbhygCMBDAOyfviIGZqBfarfaOIgBCaTDX5FS5IVRr0wYADYIiAVm69+UJIsWDg8UfpQAfWNM3hoAWXkB5AGY695Q+gBKEAMYB7AE4AJgA8iH4AlowA5gA02rr68AB8vL6MiFABPvoRkQDKwACuDg6iABQAtvYOCUS2YI7OCbFhAWxQoTkA2gC6AJRoiWK4LfAAdA7+AKL0XgAWpS0DQ7hQAPSrUGElAO7QWsCzYYasUABEja6nm2lk9AFQPiXK9ABuOZvAUIw+jAC0-AFYgdoL5ymAwso-FBtvQ-IwcjRcOs6BBFD5tlB6Ip4D4Mkd5JBYWNRgBCAD8iKgyk+ZEQ1BWeHIokq9Wqrk6LW6vAZyPoNMOhjAPgiwFiMFyUFS8BaED8hlOtOAV2AuNo0HO8Uu0UpyJxsQCRy84XKET50AK8J+jMQhngsx8BUU922-gA1qNRhSGVsoKVFaMtKggyRFUhiP1sAzcFKfMpRmjIn7yKMGMxmPBevSVlxKfBtmFgHNff7+BHKdHWNApIgw0RI1Hoz8cXGE0nECmWOnM+WoDmGX3e92eFggA
Related Issues:
The text was updated successfully, but these errors were encountered: