Remove incorrect commment resulting from merging

This commit is contained in:
Kanchalai Tanglertsampan 2016-02-11 14:29:22 -08:00
parent 2a674579d3
commit 0aad5e5e45

View File

@ -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 = <ClassDeclaration>node.parent;
if (getClassExtendsHeritageClauseElement(containingClassDecl)) {
const classExtendsNull = classDeclarationExtendsNull(containingClassDecl);