* Gets read only export info. * @param {ExportInfoName} name export name * @returns {ExportInfo} export info for this name
(name)
| 351 | * @returns {ExportInfo} export info for this name |
| 352 | */ |
| 353 | getReadOnlyExportInfo(name) { |
| 354 | const info = this._exports.get(name); |
| 355 | if (info !== undefined) return info; |
| 356 | if (this._redirectTo !== undefined) { |
| 357 | return this._redirectTo.getReadOnlyExportInfo(name); |
| 358 | } |
| 359 | return this._otherExportsInfo; |
| 360 | } |
| 361 | |
| 362 | /** |
| 363 | * Gets read only export info recursive. |
no test coverage detected