Convert Receiver to Parameter: Place new parameter at the start
This affects editor template only since Change Signature already puts converted receiver at the parameter list start by default #KT-15543 Fixed
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
fun <caret>String.foo(s: String): String {
|
||||
return this + s
|
||||
}
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
fun <caret>foo(s1: String, s: String): String {
|
||||
return s1 + s
|
||||
}
|
||||
Reference in New Issue
Block a user