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
Expected behavior: In Anonymous Classes, use of its fields and methods outside of its class's definition should show up in "Find References". By extension, in Anonymous Subclasses, overridden methods should have abstract / base methods show up in "Find References".
Actual behavior: In Anonymous Classes, use of its fields and methods outside of its class's definition does not show up in "Find References". By extension, in Anonymous Subclasses, overridden methods do not have abstract / base methods show up in "Find References".
val a = new {
val b = 1
}
a.b
trait A {
def B(): Unit
}
val a = new A {
override B(): Unit = {
print("Hello")
}
}