-
Notifications
You must be signed in to change notification settings - Fork 38
Closed
Labels
Description
lsif-java
version: 0.7.2
Type of code: case classes
Expected behavior: Instantiations of case classes should reference the case class definition in precise code intelligence. This is consistent with IntelliJ behavior.
Actual behavior: If a companion object is not defined, code intelligence falls back to search-based code intelligence. If a companion object is defined, code intelligence references the companion object instead.
case class Test(a: String) {}
case class Test(a: String) {}
object Test {}