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
class Test:
def my_method(self, argument):
return argument + argument
gets transformed into
class E:
def my_method(B,argument):A=argument;return A+A
In other words, it seems method names aren't getting replaced, and some (all non-self?) arguments aren't getting renamed either.
I'm sorry if this duplicates issue #7, but I think it's different.
Is the idea that the minifier shouldn't rename "public APIs" like classes?
In my case this is not an issue, so maybe there could be a flag?
Also, the class itself is getting renamed, so maybe this is not the case at all.
The text was updated successfully, but these errors were encountered:
The code
gets transformed into
In other words, it seems method names aren't getting replaced, and some (all non-self?) arguments aren't getting renamed either.
I'm sorry if this duplicates issue #7, but I think it's different.
Is the idea that the minifier shouldn't rename "public APIs" like classes?
In my case this is not an issue, so maybe there could be a flag?
Also, the class itself is getting renamed, so maybe this is not the case at all.
The text was updated successfully, but these errors were encountered: