Skip to content

Commit 9681c16

Browse files
DanielRosenwasserKingwl
authored andcommitted
Remove newline
1 parent be708bb commit 9681c16

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/compiler/transformers/utilities.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,6 @@ namespace ts {
283283
export function shouldCaptureInTempVariable(expression: Expression): boolean {
284284
// don't capture identifiers and `this` in a temporary variable
285285
// `super` cannot be captured as it's not a real variable
286-
287286
return !isIdentifier(expression) &&
288287
expression.kind !== SyntaxKind.ThisKeyword &&
289288
expression.kind !== SyntaxKind.SuperKeyword;

0 commit comments

Comments
 (0)