Add name to argument: support old-style comment deletion
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
// INTENTION_TEXT: "Add 'b =' to argument"
|
||||
|
||||
fun foo(s: String, b: Boolean){}
|
||||
|
||||
fun bar() {
|
||||
foo("", /* b = */ true<caret>)
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// INTENTION_TEXT: "Add 'b =' to argument"
|
||||
|
||||
fun foo(s: String, b: Boolean){}
|
||||
|
||||
fun bar() {
|
||||
foo("", b = true<caret>)
|
||||
}
|
||||
Reference in New Issue
Block a user