We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be708bb commit 9681c16Copy full SHA for 9681c16
src/compiler/transformers/utilities.ts
@@ -283,7 +283,6 @@ namespace ts {
283
export function shouldCaptureInTempVariable(expression: Expression): boolean {
284
// don't capture identifiers and `this` in a temporary variable
285
// `super` cannot be captured as it's not a real variable
286
-
287
return !isIdentifier(expression) &&
288
expression.kind !== SyntaxKind.ThisKeyword &&
289
expression.kind !== SyntaxKind.SuperKeyword;
0 commit comments