Add name to argument: support old-style comment deletion

This commit is contained in:
Mikhail Glukhikh
2019-05-07 19:51:42 +03:00
parent b0d294b50c
commit b4a63794e5
4 changed files with 27 additions and 0 deletions
@@ -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>)
}