Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
ahabhgk committed Apr 18, 2024
1 parent a93725f commit cc5c37d
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions lib/dependencies/HarmonyImportSpecifierDependency.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,6 @@ class HarmonyImportSpecifierDependency extends HarmonyImportDependency {
this.asiSafe = undefined;
/** @type {Set<string> | boolean | undefined} */
this.usedByExports = undefined;
/** @type {Set<DestructuringAssignmentProperty> | undefined} */
this.referencedPropertiesInDestructuring = undefined;
}

// TODO webpack 6 remove
Expand Down Expand Up @@ -269,7 +267,6 @@ class HarmonyImportSpecifierDependency extends HarmonyImportDependency {
write(this.shorthand);
write(this.asiSafe);
write(this.usedByExports);
write(this.referencedPropertiesInDestructuring);
super.serialize(context);
}

Expand All @@ -289,7 +286,6 @@ class HarmonyImportSpecifierDependency extends HarmonyImportDependency {
this.shorthand = read();
this.asiSafe = read();
this.usedByExports = read();
this.referencedPropertiesInDestructuring = read();
super.deserialize(context);
}
}
Expand Down

0 comments on commit cc5c37d

Please sign in to comment.