()
| 787 | } |
| 788 | |
| 789 | includeModuleInExecution(): void { |
| 790 | if (!this.isExecuted) { |
| 791 | markModuleAndImpureDependenciesAsExecuted(this); |
| 792 | this.graph.needsTreeshakingPass = true; |
| 793 | } |
| 794 | } |
| 795 | |
| 796 | isIncluded(): boolean | null { |
| 797 | // Modules where this.ast is missing have been loaded via this.load and are |
no test coverage detected