Skip to content

Commit c585ea6

Browse files
committed
remove _chunksDebugIdent
1 parent 1b28c93 commit c585ea6

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

lib/Module.js

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,6 @@ class Module extends DependenciesBlock {
5656
this.usedExports = null;
5757
this.providedExports = null;
5858
this._chunks = new SortableSet(undefined, sortById);
59-
this._chunksDebugIdent = undefined;
6059
this.warnings = [];
6160
this.dependenciesWarnings = [];
6261
this.errors = [];
@@ -76,7 +75,6 @@ class Module extends DependenciesBlock {
7675
this.usedExports = null;
7776
this.providedExports = null;
7877
this._chunks.clear();
79-
this._chunksDebugIdent = undefined;
8078
this.optimizationBailout.length = 0;
8179
super.disconnect();
8280
}
@@ -87,23 +85,19 @@ class Module extends DependenciesBlock {
8785
this.index2 = null;
8886
this.depth = null;
8987
this._chunks.clear();
90-
this._chunksDebugIdent = undefined;
9188
super.unseal();
9289
}
9390

9491
setChunks(chunks) {
9592
this._chunks = new SortableSet(chunks, sortById);
96-
this._chunksDebugIdent = undefined;
9793
}
9894

9995
addChunk(chunk) {
10096
this._chunks.add(chunk);
101-
this._chunksDebugIdent = undefined;
10297
}
10398

10499
removeChunk(chunk) {
105100
if(this._chunks.delete(chunk)) {
106-
this._chunksDebugIdent = undefined;
107101
chunk.removeModule(this);
108102
return true;
109103
}

0 commit comments

Comments
 (0)