Skip to content

Commit 99a6f2b

Browse files
committed
Removing unused function from emitter
1 parent c4b0302 commit 99a6f2b

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/compiler/emitter.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4999,14 +4999,6 @@ module ts {
49994999
}
50005000
}
50015001

5002-
function getFirstExportAssignment(sourceFile: SourceFile) {
5003-
return forEach(sourceFile.statements, node => {
5004-
if (node.kind === SyntaxKind.ExportAssignment) {
5005-
return <ExportAssignment>node;
5006-
}
5007-
});
5008-
}
5009-
50105002
function sortAMDModules(amdModules: {name: string; path: string}[]) {
50115003
// AMD modules with declared variable names go first
50125004
return amdModules.sort((moduleA, moduleB) => {

0 commit comments

Comments
 (0)