* Returns the estimated size for the requested source type. * @abstract * @param {NormalModule} module the module * @param {SourceType=} type source type * @returns {number} estimate size of the module
(module, type)
| 95 | * @returns {number} estimate size of the module |
| 96 | */ |
| 97 | getSize(module, type) { |
| 98 | const AbstractMethodError = require("./errors/AbstractMethodError"); |
| 99 | |
| 100 | throw new AbstractMethodError(); |
| 101 | } |
| 102 | |
| 103 | /* istanbul ignore next */ |
| 104 | /** |