Skip to content

Commit 7908257

Browse files
author
Andy Hanson
committed
Fix lint error
1 parent 6814a9f commit 7908257

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberOriginal file lineDiff line numberDiff line change
@@ -987,7 +987,7 @@ namespace ts {
987
return node.parent ? getEntityNameForExtendingInterface(node.parent) : undefined;
987
return node.parent ? getEntityNameForExtendingInterface(node.parent) : undefined;
988
case SyntaxKind.ExpressionWithTypeArguments:
988
case SyntaxKind.ExpressionWithTypeArguments:
989
Debug.assert(isEntityNameExpression((<ExpressionWithTypeArguments>node).expression));
989
Debug.assert(isEntityNameExpression((<ExpressionWithTypeArguments>node).expression));
990-
return <EntityNameExpression>(<ExpressionWithTypeArguments>node).expression
990+
return <EntityNameExpression>(<ExpressionWithTypeArguments>node).expression;
991
default:
991
default:
992
return undefined;
992
return undefined;
993
}
993
}

0 commit comments

Comments
 (0)