(ids: Array<ExportId>)
| 539 | } |
| 540 | |
| 541 | unexport(ids: Array<ExportId>): void { |
| 542 | for (let id of ids) { |
| 543 | this.releaseExport(id, 1); |
| 544 | } |
| 545 | } |
| 546 | |
| 547 | private releaseExport(exportId: ExportId, refcount: number) { |
| 548 | let entry = this.exports[exportId]; |
nothing calls this directly
no test coverage detected