Rename: Initial support of naming conventions
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
data class A(val foo: Int, val s: String, val o: Any)
|
||||
|
||||
fun test() {
|
||||
val a = A(1, "2", Any())
|
||||
a.foo
|
||||
a.component1()
|
||||
val (x, y, z) = a
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
data class A(val n: Int, val s: String, val o: Any)
|
||||
|
||||
fun test() {
|
||||
val a = A(1, "2", Any())
|
||||
a.n
|
||||
a.component1()
|
||||
val (x, y, z) = a
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"type": "KOTLIN_PROPERTY",
|
||||
"classFQN": "A",
|
||||
"oldName": "n",
|
||||
"newName": "foo",
|
||||
"mainFile": "synthesizedComponentFunction.kt"
|
||||
}
|
||||
Reference in New Issue
Block a user