added missing semicolon after calling exporter function

This commit is contained in:
Vladimir Matveev
2015-06-04 10:52:43 -07:00
parent 113b7ed13d
commit b76cc37560
4 changed files with 10 additions and 10 deletions

View File

@@ -4503,7 +4503,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
emitDeclarationName(node);
write(`", `);
emitDeclarationName(node);
write(")");
write(");");
}
emitExportMemberAssignments(node.name);
}
@@ -4624,7 +4624,7 @@ var __param = (this && this.__param) || function (paramIndex, decorator) {
emitDeclarationName(node);
write(`", `);
emitDeclarationName(node);
write(")");
write(");");
}
emitExportMemberAssignments(<Identifier>node.name);
}