Remove newline

This commit is contained in:
Daniel Rosenwasser 2020-04-27 12:31:25 -07:00 committed by kingwl
parent be708bbb0a
commit 9681c1611c

View file

@ -283,7 +283,6 @@ namespace ts {
export function shouldCaptureInTempVariable(expression: Expression): boolean {
// don't capture identifiers and `this` in a temporary variable
// `super` cannot be captured as it's not a real variable
return !isIdentifier(expression) &&
expression.kind !== SyntaxKind.ThisKeyword &&
expression.kind !== SyntaxKind.SuperKeyword;