(name: string, nodeStart: number)
| 1077 | } |
| 1078 | |
| 1079 | private assertUniqueExportName(name: string, nodeStart: number) { |
| 1080 | if (this.exportDescriptions.has(name) || this.reexportDescriptions.has(name)) { |
| 1081 | this.error(logDuplicateExportError(name), nodeStart); |
| 1082 | } |
| 1083 | } |
| 1084 | |
| 1085 | private addExport( |
| 1086 | node: ExportAllDeclaration | ExportNamedDeclaration | ExportDefaultDeclaration |
no test coverage detected