Fix merge mistake.

This commit is contained in:
Daniel Rosenwasser
2015-07-10 17:42:33 -07:00
parent 55b39d45f6
commit 616d84e4a0

View File

@@ -3477,10 +3477,6 @@ namespace ts {
function filterModuleExports(exports: Symbol[], namedImportsOrExports: NamedImportsOrExports): Symbol[] {
let exisingImports: Map<boolean> = {};
if (!importDeclaration.importClause) {
return exports;
}
for (let element of namedImportsOrExports.elements) {
// If this is the current item we are editing right now, do not filter it out
if (element.getStart() <= position && position <= element.getEnd()) {