@@ -320,14 +320,20 @@ export class TypeUtils {
320
320
}
321
321
322
322
if ( srcType instanceof UnionType ) {
323
+ let isIncompatible = false ;
324
+
323
325
// 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
+ } ) ;
327
335
328
- if ( incompatibleType ) {
329
- diag . addMessage ( `Type '${ incompatibleType . asString ( ) } ' cannot be assigned to ` +
330
- `type '${ destType . asString ( ) } '.` ) ;
336
+ if ( isIncompatible ) {
331
337
return false ;
332
338
}
333
339
@@ -388,7 +394,7 @@ export class TypeUtils {
388
394
const srcLiteral = srcType . getLiteralValue ( ) ;
389
395
if ( srcLiteral !== destLiteral ) {
390
396
diag . addMessage ( `'${ srcLiteral ? srcType . literalAsString ( ) : srcType . asString ( ) } ' ` +
391
- ` cannot be assigned to '${ destType . literalAsString ( ) } '. ` ) ;
397
+ ` cannot be assigned to '${ destType . literalAsString ( ) } '` ) ;
392
398
393
399
return false ;
394
400
}
0 commit comments