assorted Find Usages fixes: add missing read actions, better cancellation, fix search of componentN() usages for data class primary constructor parameter, remove workaround for usage of IDEA API which is now public
This commit is contained in:
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
// PSI_ELEMENT: org.jetbrains.kotlin.psi.JetParameter
|
||||
// OPTIONS: usages
|
||||
package test
|
||||
|
||||
public data class KotlinDataClass(val <caret>foo: Int, val bar: String) {
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package test;
|
||||
|
||||
public class JavaUser {
|
||||
int use(KotlinDataClass dataClass) {
|
||||
return dataClass.component1();
|
||||
}
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
Unclassified usage (5: 26) return dataClass.component1();
|
||||
Reference in New Issue
Block a user