From c88908e30097a757bfb2c7d7c73b678eb52a7d07 Mon Sep 17 00:00:00 2001 From: Yui T Date: Thu, 20 Aug 2015 16:29:55 -0700 Subject: [PATCH] Add comments --- src/compiler/emitter.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/compiler/emitter.ts b/src/compiler/emitter.ts index 4b85f22e7ca..d07373613ac 100644 --- a/src/compiler/emitter.ts +++ b/src/compiler/emitter.ts @@ -7003,8 +7003,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi } } + /** + * Emit comments associated with node that will not be emitted into JS file + */ function emitCommentsOnNotEmittedNode(node: Node) { - /// TODO (yuisu): comments emitLeadingCommentsWorker(node, /*isEmittedNode:*/ false); }