From a5d320a83e3f295d6ffbafa219de7e8919ae16dd Mon Sep 17 00:00:00 2001 From: Nathan Shively-Sanders Date: Tue, 4 Apr 2017 15:15:25 -0700 Subject: [PATCH] Fix whitespace lint --- src/compiler/checker.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/checker.ts b/src/compiler/checker.ts index 1e309cdf488..2fe44641efd 100644 --- a/src/compiler/checker.ts +++ b/src/compiler/checker.ts @@ -805,7 +805,7 @@ namespace ts { } else { const isDeclarationInstanceProperty = declaration.kind === SyntaxKind.PropertyDeclaration && !(getModifierFlags(declaration) & ModifierFlags.Static); - if(!isDeclarationInstanceProperty || getContainingClass(usage) !== getContainingClass(declaration)) { + if (!isDeclarationInstanceProperty || getContainingClass(usage) !== getContainingClass(declaration)) { return true; } }