Skip to content

Commit 958620b

Browse files
author
Andy Hanson
committed
Fix lint errors
1 parent 38e201e commit 958620b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/services/services.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2950,7 +2950,7 @@ namespace ts {
29502950
/* @internal */ export function getNodeKind(node: Node): string {
29512951
switch (node.kind) {
29522952
case SyntaxKind.SourceFile:
2953-
return isExternalModule(<SourceFile> node) ? ScriptElementKind.moduleElement : ScriptElementKind.scriptElement;
2953+
return isExternalModule(<SourceFile>node) ? ScriptElementKind.moduleElement : ScriptElementKind.scriptElement;
29542954
case SyntaxKind.ModuleDeclaration:
29552955
return ScriptElementKind.moduleElement;
29562956
case SyntaxKind.ClassDeclaration:
@@ -2960,9 +2960,9 @@ namespace ts {
29602960
case SyntaxKind.TypeAliasDeclaration: return ScriptElementKind.typeElement;
29612961
case SyntaxKind.EnumDeclaration: return ScriptElementKind.enumElement;
29622962
case SyntaxKind.VariableDeclaration:
2963-
return getKindOfVariableDeclaration(<VariableDeclaration> node);
2963+
return getKindOfVariableDeclaration(<VariableDeclaration>node);
29642964
case SyntaxKind.BindingElement:
2965-
return getKindOfVariableDeclaration(<VariableDeclaration> getRootDeclaration(node));
2965+
return getKindOfVariableDeclaration(<VariableDeclaration>getRootDeclaration(node));
29662966
case SyntaxKind.ArrowFunction:
29672967
case SyntaxKind.FunctionDeclaration:
29682968
case SyntaxKind.FunctionExpression:

0 commit comments

Comments
 (0)