()
| 768 | } |
| 769 | |
| 770 | includeAllExports(): void { |
| 771 | if (this.allExportsIncluded) return; |
| 772 | this.allExportsIncluded = true; |
| 773 | this.includeModuleInExecution(); |
| 774 | const inclusionContext = createInclusionContext(); |
| 775 | for (const variable of this.getExportedVariablesByName().values()) { |
| 776 | this.includeVariable(variable, UNKNOWN_PATH, inclusionContext); |
| 777 | variable.deoptimizePath(UNKNOWN_PATH); |
| 778 | if (variable instanceof ExternalVariable) { |
| 779 | variable.module.reexported = true; |
| 780 | } |
| 781 | } |
| 782 | } |
| 783 | |
| 784 | includeAllInBundle(): void { |
| 785 | this.ast!.include(createInclusionContext(), true); |
no test coverage detected