Skip to content

Commit 93af2b2

Browse files
committed
Comment cleanup.
1 parent 5915fbd commit 93af2b2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/compiler/emitter.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2651,7 +2651,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
26512651
}
26522652

26532653
function emitCallTarget(node: Expression): Expression {
2654-
if (node.kind === SyntaxKind.Identifier || node.kind === SyntaxKind.ThisKeyword || /*node.kind === SyntaxKind.ThisType ||*/ node.kind === SyntaxKind.SuperKeyword) {
2654+
if (node.kind === SyntaxKind.Identifier || node.kind === SyntaxKind.ThisKeyword || node.kind === SyntaxKind.SuperKeyword) {
26552655
emit(node);
26562656
return node;
26572657
}
@@ -7869,8 +7869,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
78697869
case SyntaxKind.GetAccessor:
78707870
case SyntaxKind.SetAccessor:
78717871
return emitAccessor(<AccessorDeclaration>node);
7872-
// case SyntaxKind.ThisType:
7873-
// console.log("ThisType: emitJavaScriptWorker");
78747872
case SyntaxKind.ThisKeyword:
78757873
return emitThis(node);
78767874
case SyntaxKind.SuperKeyword:

0 commit comments

Comments
 (0)