From 93af2b2beb2bc9f787285db906c47dc1825627bb Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Thu, 19 Nov 2015 15:31:56 -0800 Subject: [PATCH] Comment cleanup. --- src/compiler/emitter.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/compiler/emitter.ts b/src/compiler/emitter.ts index c2a65addfb..d9ca067e6c 100644 --- a/src/compiler/emitter.ts +++ b/src/compiler/emitter.ts @@ -2651,7 +2651,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi } function emitCallTarget(node: Expression): Expression { - if (node.kind === SyntaxKind.Identifier || node.kind === SyntaxKind.ThisKeyword || /*node.kind === SyntaxKind.ThisType ||*/ node.kind === SyntaxKind.SuperKeyword) { + if (node.kind === SyntaxKind.Identifier || node.kind === SyntaxKind.ThisKeyword || node.kind === SyntaxKind.SuperKeyword) { emit(node); return node; } @@ -7869,8 +7869,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi case SyntaxKind.GetAccessor: case SyntaxKind.SetAccessor: return emitAccessor(node); - // case SyntaxKind.ThisType: - // console.log("ThisType: emitJavaScriptWorker"); case SyntaxKind.ThisKeyword: return emitThis(node); case SyntaxKind.SuperKeyword: