()
| 410 | } |
| 411 | |
| 412 | cacheInfoGetters(): void { |
| 413 | cacheObjectGetters(this.info, [ |
| 414 | 'dynamicallyImportedIdResolutions', |
| 415 | 'dynamicallyImportedIds', |
| 416 | 'dynamicImporters', |
| 417 | 'exportedBindings', |
| 418 | 'exports', |
| 419 | 'hasDefaultExport', |
| 420 | 'implicitlyLoadedAfterOneOf', |
| 421 | 'implicitlyLoadedBefore', |
| 422 | 'importedIdResolutions', |
| 423 | 'importedIds', |
| 424 | 'importers' |
| 425 | ]); |
| 426 | } |
| 427 | |
| 428 | error(properties: RollupError, pos: number | undefined): never { |
| 429 | if (pos !== undefined) { |
no test coverage detected