* Returns the module id assigned by the chunk graph. * @deprecated * @returns {ModuleId | null} module id
()
| 299 | * @returns {ModuleId | null} module id |
| 300 | */ |
| 301 | get id() { |
| 302 | return ChunkGraph.getChunkGraphForModule( |
| 303 | this, |
| 304 | "Module.id", |
| 305 | "DEP_WEBPACK_MODULE_ID" |
| 306 | ).getModuleId(this); |
| 307 | } |
| 308 | |
| 309 | /** |
| 310 | * Updates the module id using the provided value. |
nothing calls this directly
no test coverage detected