From 0148915daf28d8a4117ffeb047198d72cb69b64b Mon Sep 17 00:00:00 2001 From: Yui T Date: Tue, 7 Jul 2015 09:18:08 -0700 Subject: [PATCH] Fix comment --- src/compiler/checker.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index ca7df8d9810..df6796947fc 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -13380,9 +13380,10 @@ namespace ts { // type parameter inside class expression similar to how we handle it in classDeclaration and interface Declaration case SyntaxKind.ClassDeclaration: case SyntaxKind.InterfaceDeclaration: - // If we didn't come from static member of class or interface, add the type parameters into the symbol table + // If we didn't come from static member of class or interface, + // add the type parameters into the symbol table // (type parameters of classDeclaration/classExpression and interface are in member property of the symbol. - // jNote: that the memberFlags come from previous iteration. + // Note: that the memberFlags come from previous iteration. if (!(memberFlags & NodeFlags.Static)) { copySymbols(getSymbolOfNode(location).members, meaning & SymbolFlags.Type); }