diff --git a/src/compiler/utilities.ts b/src/compiler/utilities.ts index 63c2edad6c2..5d7c23dd18b 100644 --- a/src/compiler/utilities.ts +++ b/src/compiler/utilities.ts @@ -399,13 +399,14 @@ module ts { export function isVariableLike(node: Node): boolean { if (node) { switch (node.kind) { - case SyntaxKind.VariableDeclaration: - case SyntaxKind.Parameter: case SyntaxKind.BindingElement: - case SyntaxKind.PropertyDeclaration: - case SyntaxKind.PropertyAssignment: - case SyntaxKind.ShorthandPropertyAssignment: case SyntaxKind.EnumMember: + case SyntaxKind.Parameter: + case SyntaxKind.PropertyAssignment: + case SyntaxKind.PropertyDeclaration: + case SyntaxKind.PropertySignature: + case SyntaxKind.ShorthandPropertyAssignment: + case SyntaxKind.VariableDeclaration: return true; } }