diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 6508ce755d0..fb6a0528c74 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -7328,10 +7328,6 @@ namespace ts { } } - function isSuperCallExpression(n: Node): boolean { - return n.kind === SyntaxKind.CallExpression && (n).expression.kind === SyntaxKind.SuperKeyword; - } - function findFirstSuperCall(n: Node): Node { if (isSuperCallExpression(n)) { return n;