We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 07142a4 commit f3b1321Copy full SHA for f3b1321
src/compiler/checker.ts
@@ -7244,7 +7244,8 @@ namespace ts {
7244
let declaringClass = <InterfaceType>getDeclaredTypeOfSymbol(prop.parent);;
7245
7246
if (left.kind === SyntaxKind.SuperKeyword) {
7247
- let errorNode = node.kind === SyntaxKind.PropertyAccessExpression ? (<PropertyAccessExpression>node).name :
+ let errorNode = node.kind === SyntaxKind.PropertyAccessExpression ?
7248
+ (<PropertyAccessExpression>node).name :
7249
(<QualifiedName>node).right;
7250
7251
// TS 1.0 spec (April 2014): 4.8.2
0 commit comments