()
| 443 | }, |
| 444 | |
| 445 | initializeAddons() { |
| 446 | if (this._addonsInitialized) { |
| 447 | return; |
| 448 | } |
| 449 | this._addonsInitialized = true; |
| 450 | |
| 451 | logger.info('initializeAddons for: %s', this.name); |
| 452 | |
| 453 | this.discoverAddons(); |
| 454 | |
| 455 | this.addons = instantiateAddons(this, this.project, this.addonPackages); |
| 456 | this.addons.forEach((addon) => logger.info('addon: %s', addon.name)); |
| 457 | }, |
| 458 | |
| 459 | /** |
| 460 | Invoke the specified method for each enabled addon. |
nothing calls this directly
no test coverage detected
searching dependent graphs…