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
Currently fresh names for anonymous classes follow this pattern
classFoo {
newObject {} // will be named Foo$$anon$1
}
classBar {
newObject {} // will be named Bar$$anon$2newObject {} // will be named Bar$$anon$3
}
classBaz {
newObject {} // will be named Baz$$anon$4
}
which will depend on the compilation order.
We need to change it to give fresh names per owner class like:
classFoo {
newObject {} // will be named Foo$$anon$1
}
classBar {
newObject {} // will be named Bar$$anon$1newObject {} // will be named Bar$$anon$2
}
classBaz {
newObject {} // will be named Baz$$anon$1
}
The text was updated successfully, but these errors were encountered:
Currently fresh names for anonymous classes follow this pattern
which will depend on the compilation order.
We need to change it to give fresh names per owner class like:
The text was updated successfully, but these errors were encountered: