(module: Module)
| 602 | } |
| 603 | |
| 604 | private getResolveStaticDependencyPromises(module: Module): ResolveStaticDependencyPromise[] { |
| 605 | return Array.from( |
| 606 | module.sourcesWithAttributes, |
| 607 | async ([source, attributes]) => |
| 608 | [ |
| 609 | source, |
| 610 | (module.resolvedIds[source] = |
| 611 | module.resolvedIds[source] || |
| 612 | this.handleInvalidResolvedId( |
| 613 | await this.resolveId( |
| 614 | source, |
| 615 | module.id, |
| 616 | EMPTY_OBJECT, |
| 617 | false, |
| 618 | attributes, |
| 619 | module.info.attributes |
| 620 | ), |
| 621 | source, |
| 622 | module.id, |
| 623 | attributes |
| 624 | )) |
| 625 | ] as const |
| 626 | ); |
| 627 | } |
| 628 | |
| 629 | private getResolvedIdWithDefaults( |
| 630 | resolvedId: NormalizedResolveIdWithoutDefaults | null, |
no test coverage detected