Parameter names from current file get higher priority + number of occurrences matters
This commit is contained in:
Vendored
+16
@@ -0,0 +1,16 @@
|
||||
class MyFileA
|
||||
class MyFileB
|
||||
class MyFileC
|
||||
|
||||
fun f(myFileB: MyFileB, myFileX: Int, myFileY: Int)
|
||||
fun g(myFileY: Int)
|
||||
fun h(myFileX: String)
|
||||
|
||||
fun foo(myFi<caret>)
|
||||
|
||||
// ORDER: myFileY
|
||||
// ORDER: myFileB
|
||||
// ORDER: myFileX
|
||||
// ORDER: myFileX
|
||||
// ORDER: myFileA
|
||||
// ORDER: myFileC
|
||||
Reference in New Issue
Block a user