(target, source, args, runtime2)
| 744 | this.features = features; |
| 745 | } |
| 746 | apply(target, source, args, runtime2) { |
| 747 | for (const feature of this.features) { |
| 748 | feature.install(target, source, args, runtime2); |
| 749 | } |
| 750 | } |
| 751 | }; |
| 752 | var FailedFeature = class extends Feature { |
| 753 | constructor(error, keyword) { |