Skip to content

Commit 183c0ef

Browse files
committed
Improved error reporting for union type mismatches.
1 parent 7d5ff66 commit 183c0ef

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

server/src/analyzer/typeUtils.ts

+13-7
Original file line numberDiff line numberDiff line change
@@ -320,14 +320,20 @@ export class TypeUtils {
320320
}
321321

322322
if (srcType instanceof UnionType) {
323+
let isIncompatible = false;
324+
323325
// For union sources, all of the types need to be assignable to the dest.
324-
const incompatibleType = srcType.getTypes().find(
325-
t => !this.canAssignType(destType, t, diag.createAddendum(), typeVarMap,
326-
allowSubclasses, recursionCount + 1));
326+
srcType.getTypes().forEach(t => {
327+
if (!this.canAssignType(destType, t, diag.createAddendum(), typeVarMap,
328+
allowSubclasses, recursionCount + 1)) {
329+
330+
diag.addMessage(`Type '${ t.asString() }' cannot be assigned to ` +
331+
`type '${ destType.asString() }'`);
332+
isIncompatible = true;
333+
}
334+
});
327335

328-
if (incompatibleType) {
329-
diag.addMessage(`Type '${ incompatibleType.asString() }' cannot be assigned to ` +
330-
`type '${ destType.asString() }'.`);
336+
if (isIncompatible) {
331337
return false;
332338
}
333339

@@ -388,7 +394,7 @@ export class TypeUtils {
388394
const srcLiteral = srcType.getLiteralValue();
389395
if (srcLiteral !== destLiteral) {
390396
diag.addMessage(`'${ srcLiteral ? srcType.literalAsString() : srcType.asString() }' ` +
391-
` cannot be assigned to '${ destType.literalAsString() }'.`);
397+
` cannot be assigned to '${ destType.literalAsString() }'`);
392398

393399
return false;
394400
}

0 commit comments

Comments
 (0)