* Returns the unique identifier used to reference this module. * @abstract * @returns {string} a unique identifier of the module
()
| 1001 | * @returns {string} a unique identifier of the module |
| 1002 | */ |
| 1003 | identifier() { |
| 1004 | const AbstractMethodError = require("./errors/AbstractMethodError"); |
| 1005 | |
| 1006 | throw new AbstractMethodError(); |
| 1007 | } |
| 1008 | |
| 1009 | /* istanbul ignore next */ |
| 1010 | /** |
no test coverage detected