From 0aad5e5e4554d671cd5efd9979928b4bdc3d8cae Mon Sep 17 00:00:00 2001 From: Kanchalai Tanglertsampan Date: Thu, 11 Feb 2016 14:29:22 -0800 Subject: [PATCH] Remove incorrect commment resulting from merging --- src/compiler/checker.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index fb6a0528c74..dc3704586dd 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -11927,8 +11927,8 @@ namespace ts { } // TS 1.0 spec (April 2014): 8.3.2 - // Constructors of classes with no extends clause and constructors of classes that extends null may not contain super calls, - // whereas constructors of derived classes must contain at least one super call somewhere in their function body. + // Constructors of classes with no extends clause may not contain super calls, whereas + // constructors of derived classes must contain at least one super call somewhere in their function body. const containingClassDecl = node.parent; if (getClassExtendsHeritageClauseElement(containingClassDecl)) { const classExtendsNull = classDeclarationExtendsNull(containingClassDecl);