Nathan Shively-Sanders
1c7628e653
Improve discriminated union error messages
...
Assignability errors for discriminated unions now check the value of the
discriminant to decide which member of the union to check for
assignability.
Previously, assignability didn't know about discriminated unions and
would check every member, issuing errors for the last member of the
union if assignability failed.
For example:
```ts
type Square = { kind: "sq", size: number }
type Rectangle = { kind: "rt", x: number, y: number }
type Circle = { kind: "cr", radius: number }
type Shape =
| Square
| Rectangle
| Circle;
let shape: Shape = {
kind: "sq",
x: 12,
y: 13,
}
```
`typeRelatedToSomeType` now checks whether each property in the source
type is a discriminant. It finds `kind` and proceeds to look for the
type in the target union that has `kind: "sq"`. If it finds it, which it
does in this example (`Square`), then it checks only assignbility to
`Square`.
The result is that the error now says that property 'size' is missing in
type `{ kind: "sq", x: number, y: number }` instead of saying that that
"sq" is not assignable to type "cr" like it did before.
Fixes #10867
2017-02-10 14:01:47 -08:00
..
2017-01-30 13:50:34 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-02-08 13:36:19 -08:00
2017-01-31 10:28:32 -08:00
2017-02-08 13:36:19 -08:00
2017-01-20 19:59:26 -08:00
2017-01-20 19:59:26 -08:00
2017-01-20 19:59:26 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-02-06 18:14:08 -08:00
2017-02-08 16:14:36 -08:00
2017-02-08 16:14:36 -08:00
2017-02-08 16:14:36 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 16:09:11 -08:00
2017-01-31 10:28:32 -08:00
2017-02-07 18:23:22 -08:00
2017-02-07 18:23:22 -08:00
2017-02-07 18:23:22 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-02-08 13:36:19 -08:00
2017-02-07 11:56:44 -08:00
2017-02-07 11:56:44 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-06 18:14:08 -08:00
2017-02-08 13:36:19 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:54:50 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 15:06:24 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 16:09:11 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 18:47:35 -08:00
2017-01-26 16:08:55 -08:00
2017-01-26 16:08:55 -08:00
2017-01-26 16:08:55 -08:00
2017-01-31 10:28:32 -08:00
2017-02-10 14:01:47 -08:00
2017-02-10 14:01:47 -08:00
2017-02-08 13:36:19 -08:00
2017-01-13 15:06:24 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 15:54:50 -08:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-23 22:08:39 +01:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-02-06 16:05:40 -08:00
2017-02-06 16:05:40 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-30 12:42:19 -08:00
2017-01-30 12:42:19 -08:00
2017-01-30 12:42:19 -08:00
2017-01-13 16:09:11 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 15:54:50 -08:00
2017-01-31 10:28:32 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-21 13:12:02 -08:00
2017-01-31 14:39:10 -08:00
2017-01-13 18:47:35 -08:00
2017-02-06 09:57:12 -08:00
2017-02-09 14:55:07 -08:00
2017-02-06 09:57:12 -08:00
2017-02-08 13:36:19 -08:00
2017-02-06 11:54:13 -08:00
2017-02-06 11:54:13 -08:00
2017-02-06 11:54:13 -08:00
2017-02-01 09:47:37 -08:00
2017-02-01 09:47:37 -08:00
2017-02-01 09:47:37 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-12 10:50:08 -08:00
2017-01-12 10:50:08 -08:00
2017-01-24 13:03:16 -08:00
2017-01-24 13:03:16 -08:00
2017-01-31 10:28:32 -08:00
2017-01-30 16:57:11 -08:00
2017-01-30 16:57:11 -08:00
2017-01-30 16:57:11 -08:00
2017-01-13 18:47:35 -08:00
2017-01-19 17:36:16 -08:00
2017-01-19 17:36:16 -08:00
2017-01-19 14:27:53 -08:00
2017-01-19 14:22:22 -08:00
2017-01-19 14:22:22 -08:00
2017-01-26 11:38:50 -08:00
2017-01-26 11:38:50 -08:00
2017-01-29 12:39:33 -08:00
2017-01-29 12:39:33 -08:00
2017-01-29 12:39:33 -08:00
2017-02-01 11:37:33 -08:00
2017-02-01 11:37:33 -08:00
2017-02-01 11:37:33 -08:00
2017-01-29 12:39:33 -08:00
2017-01-29 12:39:33 -08:00
2017-01-29 12:39:33 -08:00
2017-02-07 12:59:39 -08:00
2017-01-13 15:06:24 -08:00
2017-02-09 14:55:07 -08:00
2017-02-08 13:36:19 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 16:09:11 -08:00
2017-01-31 10:28:32 -08:00
2017-01-25 09:53:34 -08:00
2017-01-25 09:53:34 -08:00
2017-01-25 09:53:34 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-20 10:46:15 -08:00
2017-01-20 10:46:15 -08:00
2017-01-20 10:46:15 -08:00
2017-02-08 13:36:19 -08:00
2017-02-08 13:36:19 -08:00
2017-02-08 13:36:19 -08:00
2017-01-18 14:57:20 +08:00
2017-01-18 14:57:20 +08:00
2017-01-15 16:26:17 -08:00
2017-02-01 11:37:11 -08:00
2017-01-13 18:47:35 -08:00
2017-01-15 16:26:17 -08:00
2017-01-11 16:11:22 -08:00
2017-01-15 16:26:17 -08:00
2017-01-13 15:06:24 -08:00
2017-01-15 16:26:17 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-30 10:42:39 -08:00
2017-01-18 08:29:38 -08:00
2017-01-18 08:29:38 -08:00
2017-01-18 08:29:38 -08:00
2017-02-08 13:36:19 -08:00
2017-01-24 11:24:30 +08:00
2017-01-24 11:24:30 +08:00
2017-01-24 11:24:30 +08:00
2017-01-24 11:24:30 +08:00
2017-01-18 14:57:20 +08:00
2017-01-13 15:06:24 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-02-08 13:36:19 -08:00
2017-01-13 16:09:11 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:06:24 -08:00
2017-01-24 13:42:05 -08:00
2017-01-24 13:42:05 -08:00
2017-01-24 13:42:05 -08:00
2017-01-24 13:42:05 -08:00
2017-01-24 13:42:05 -08:00
2017-01-24 13:42:05 -08:00
2017-01-13 18:47:35 -08:00
2017-01-25 10:40:59 -08:00
2017-01-25 10:40:59 -08:00
2017-01-25 10:40:59 -08:00
2017-01-13 18:47:35 -08:00
2017-02-08 13:36:19 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-02-06 09:57:12 -08:00
2017-02-08 13:36:19 -08:00
2017-02-08 13:36:19 -08:00
2017-02-08 13:36:19 -08:00
2017-01-14 16:06:13 +01:00
2017-01-14 16:06:13 +01:00
2017-01-21 17:08:48 +01:00
2017-01-21 17:09:26 +01:00
2017-01-27 09:53:57 -08:00
2017-01-27 09:53:57 -08:00
2017-01-27 09:53:57 -08:00
2017-01-13 18:47:35 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 18:47:35 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-19 14:47:38 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 18:47:35 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-31 10:28:32 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 18:47:35 -08:00
2017-01-13 15:06:24 -08:00
2017-01-13 15:54:50 -08:00