fix: initialize `this._cacheStage` in ModuleGraph constructor

This commit is contained in:
Nitin Kumar 2023-03-15 06:50:10 +05:30
parent 796b51175c
commit 3943ccefca
1 changed files with 3 additions and 0 deletions

View File

@ -128,6 +128,9 @@ class ModuleGraph {
/** @type {Map<Module, WeakTupleMap<any, any>>} */
this._moduleMemCaches = undefined;
/** @type {string} */
this._cacheStage = undefined;
}
/**