Appease the almighty linter.

This commit is contained in:
Daniel Rosenwasser
2015-11-03 17:39:53 -08:00
parent fa6e181ffa
commit 80a50aa104
+3 -3
View File
@@ -4832,13 +4832,13 @@ namespace ts {
sourceType = typeToString(source, /*enclosingDeclaration*/ undefined, TypeFormatFlags.UseFullyQualifiedType);
targetType = typeToString(target, /*enclosingDeclaration*/ undefined, TypeFormatFlags.UseFullyQualifiedType);
}
if (!message) {
message = relation === comparableRelation ?
Diagnostics.Type_0_is_not_comparable_with_type_1 :
Diagnostics.Type_0_is_not_assignable_to_type_1
Diagnostics.Type_0_is_not_assignable_to_type_1;
}
reportError(message, sourceType, targetType);
}