Smaller availability range for add argument name intention
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
// IS_APPLICABLE: false
|
||||
fun foo(p: Int){}
|
||||
|
||||
fun bar(list: List<Int>) {
|
||||
foo(list[<caret>1])
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
// IS_APPLICABLE: false
|
||||
fun foo(p: Int){}
|
||||
|
||||
fun bar() {
|
||||
foo("".hashCode(<caret>))
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
fun foo(p: Int){}
|
||||
|
||||
fun bar() {
|
||||
foo("".hashCode<caret>())
|
||||
}
|
||||
+5
@@ -0,0 +1,5 @@
|
||||
fun foo(p: Int){}
|
||||
|
||||
fun bar() {
|
||||
foo(p = "".hashCode<caret>())
|
||||
}
|
||||
Reference in New Issue
Block a user