From a96c5845290e557f3bf238b0176a690b781b58b0 Mon Sep 17 00:00:00 2001 From: Sheetal Nandi Date: Wed, 13 Apr 2016 10:16:41 -0700 Subject: [PATCH] Commend rewording per PR feedback --- src/compiler/printer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/printer.ts b/src/compiler/printer.ts index 398908edd82..532237ff081 100644 --- a/src/compiler/printer.ts +++ b/src/compiler/printer.ts @@ -2609,7 +2609,7 @@ const _super = (function (geti, seti) { while (node.original !== undefined) { const nodeId = node.id; node = node.original; - // If this is not the exact clone of identifier use this identifier to generate the name + // If "node" is not the exact clone of "original" identifier, use "original" identifier to generate the name if (isIdentifier(node) && node.autoGenerateKind === GeneratedIdentifierKind.Node && node.id !== nodeId) { break; }