* Returns the unique identifier used to reference this module. * @returns {string} a unique identifier of the module
()
| 31 | * @returns {string} a unique identifier of the module |
| 32 | */ |
| 33 | identifier() { |
| 34 | let str = super.identifier(); |
| 35 | |
| 36 | if (this.phase) { |
| 37 | str = `${str}|${this.phase}`; |
| 38 | } |
| 39 | |
| 40 | return str; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Assuming this module is in the cache. Update the (cached) module with |
no outgoing calls
no test coverage detected