Skip to content

Commit 66cf6be

Browse files
Removed unused declarations in 'emitter.ts'.
1 parent 11acb7b commit 66cf6be

1 file changed

Lines changed: 0 additions & 10 deletions

File tree

src/compiler/emitter.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -779,12 +779,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
779779
}
780780
}
781781

782-
function emitTrailingCommaIfPresent(nodeList: NodeArray<Node>): void {
783-
if (nodeList.hasTrailingComma) {
784-
write(",");
785-
}
786-
}
787-
788782
function emitLinePreservingList(parent: Node, nodes: NodeArray<Node>, allowTrailingComma: boolean, spacesBetweenBraces: boolean) {
789783
Debug.assert(nodes.length > 0);
790784

@@ -3248,10 +3242,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, Promi
32483242
}
32493243
}
32503244

3251-
function emitDownLevelForOfStatement(node: ForOfStatement) {
3252-
emitLoop(node, emitDownLevelForOfStatementWorker);
3253-
}
3254-
32553245
function emitDownLevelForOfStatementWorker(node: ForOfStatement, loop: ConvertedLoop) {
32563246
// The following ES6 code:
32573247
//

0 commit comments

Comments
 (0)