Change back from jsdoc comment.

This commit is contained in:
Nathan Shively-Sanders 2015-11-10 13:13:58 -08:00
parent 58b5d29c52
commit f3d2963ff7

View File

@ -2915,11 +2915,9 @@ namespace ts {
}
}
/**
* An unapplied type parameter has its symbol still the same as the matching argument symbol.
* Since parameters are applied outer-to-inner, only the last outer parameter needs to be checked.
*/
function areAllOuterTypeParametersApplied(type: Type): boolean {
// An unapplied type parameter has its symbol still the same as the matching argument symbol.
// Since parameters are applied outer-to-inner, only the last outer parameter needs to be checked.
const outerTypeParameters = (<InterfaceType>type).outerTypeParameters;
if (outerTypeParameters) {
const last = outerTypeParameters.length - 1;