From 9681c1611cf9662efd3ae20b3648685eabe4e098 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Mon, 27 Apr 2020 12:31:25 -0700 Subject: [PATCH] Remove newline --- src/compiler/transformers/utilities.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/compiler/transformers/utilities.ts b/src/compiler/transformers/utilities.ts index b4d01704f6..53052ba2d4 100644 --- a/src/compiler/transformers/utilities.ts +++ b/src/compiler/transformers/utilities.ts @@ -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;