Skip to content

Commit f3b1321

Browse files
author
Arthur Ozga
committed
Appeasing Jason lite
1 parent 07142a4 commit f3b1321

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/compiler/checker.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7244,7 +7244,8 @@ namespace ts {
72447244
let declaringClass = <InterfaceType>getDeclaredTypeOfSymbol(prop.parent);;
72457245

72467246
if (left.kind === SyntaxKind.SuperKeyword) {
7247-
let errorNode = node.kind === SyntaxKind.PropertyAccessExpression ? (<PropertyAccessExpression>node).name :
7247+
let errorNode = node.kind === SyntaxKind.PropertyAccessExpression ?
7248+
(<PropertyAccessExpression>node).name :
72487249
(<QualifiedName>node).right;
72497250

72507251
// TS 1.0 spec (April 2014): 4.8.2

0 commit comments

Comments
 (0)