From f3d2963ff7a985c827aaf2a882427fe401fe5d29 Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Tue, 10 Nov 2015 13:13:58 -0800 Subject: [PATCH] Change back from jsdoc comment. --- src/compiler/checker.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 97f274ab74d..958dcf3e4b9 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -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 = (type).outerTypeParameters; if (outerTypeParameters) { const last = outerTypeParameters.length - 1;