Fix typo causing bug

This commit is contained in:
Anders Hejlsberg 2017-02-01 09:32:33 -08:00
parent cf20850e79
commit 15c6022e40

View file

@ -4929,7 +4929,7 @@ namespace ts {
}
function getApparentTypeOfIntersectionType(type: IntersectionType) {
return type.resolvedIndexType || (type.resolvedApparentType = getTypeWithThisArgument(type, type));
return type.resolvedApparentType || (type.resolvedApparentType = getTypeWithThisArgument(type, type));
}
/**