This commit is contained in:
Yuichi Nukiyama 2016-08-21 11:42:41 +09:00
Родитель bc0c137a89
Коммит dc7b18e4e2
1 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -6401,11 +6401,10 @@ namespace ts {
}
}
if (source.flags & TypeFlags.ObjectType && target.flags & TypeFlags.Primitive) {
tryElaborateErrorsForPrimitivesAndObjects(source, target);
}
if (reportErrors) {
if (source.flags & TypeFlags.ObjectType && target.flags & TypeFlags.Primitive) {
tryElaborateErrorsForPrimitivesAndObjects(source, target);
}
reportRelationError(headMessage, source, target);
}
return Ternary.False;