We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4b0302 commit 99a6f2bCopy full SHA for 99a6f2b
src/compiler/emitter.ts
@@ -4999,14 +4999,6 @@ module ts {
4999
}
5000
5001
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
-
5010
function sortAMDModules(amdModules: {name: string; path: string}[]) {
5011
// AMD modules with declared variable names go first
5012
return amdModules.sort((moduleA, moduleB) => {
0 commit comments