* Get any available project and extensions of the module * * @returns {@ui5/project/graph/Module~SpecificationsResult} Project and extensions found in the module
()
| 113 | * @returns {@ui5/project/graph/Module~SpecificationsResult} Project and extensions found in the module |
| 114 | */ |
| 115 | async getSpecifications() { |
| 116 | if (this._pGetSpecifications) { |
| 117 | return this._pGetSpecifications; |
| 118 | } |
| 119 | |
| 120 | return this._pGetSpecifications = this._getSpecifications(); |
| 121 | } |
| 122 | |
| 123 | async _getSpecifications() { |
| 124 | // Retrieve all configurations available for this module |
no test coverage detected