You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actual: Private methods and private properties of JS classes are not minified. Expected: Private methods and private properties of JS classes are minified.
Example:
class AnyClassName {
#anyPrivateProperty = 1;
#anyPrivateMethod() {}
}
The text was updated successfully, but these errors were encountered:
I have checked your link.
And your link confirms names of private properties/methods are not minimized.
I expect that names will be minimized to single char, because private properties and methods have only local scope like const|let, thus minimizer may safety minimize their names.
I used versions: v2.20.10, v2.20.9.
Ah now I understand, you mean that the names themselves are not minified, even though the syntax of private properties and methods are minified. I will look into this, great idea!
Actual: Private methods and private properties of JS classes are not minified.
Expected: Private methods and private properties of JS classes are minified.
Example:
The text was updated successfully, but these errors were encountered: