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
In the current mode we'll rename Baz::prop to Baz::_internal_prop, but Bar::prop will be unchanged.
In "loose" mode we won't rename Baz::prop, because there is another "public" property with the same name prop (but in Bar class). So, we'll just pop-up all "public" properties and use that set of names only.
The text was updated successfully, but these errors were encountered:
Currently the transformer trying to figure out visibility type of every particular node, what allows minify properties better.
Needs to add "loose" mode, what will use the only name of the property (rather that type/symbol) to detect visibility type.
For example,
In the current mode we'll rename
Baz::prop
toBaz::_internal_prop
, butBar::prop
will be unchanged.In "loose" mode we won't rename
Baz::prop
, because there is another "public" property with the same nameprop
(but inBar
class). So, we'll just pop-up all "public" properties and use that set of names only.The text was updated successfully, but these errors were encountered: