Can be constructor property: comment saver introduced to retain comments; unbound comments now added before, not after
(cherry picked from commit 886cf21)
This commit is contained in:
committed by
Mikhail Glukhikh
parent
4145e3438f
commit
4abcc278fd
@@ -0,0 +1,4 @@
|
||||
// "Move to constructor" "true"
|
||||
class Complex(x: Int, y: Double, z: String) {
|
||||
val <caret>y: Double = y // Duplicating
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Move to constructor" "true"
|
||||
class Complex(x: Int, // Duplicating
|
||||
val y: Double, z: String) {
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Move to constructor" "true"
|
||||
class Complex(x: Int, y: Double, z: String) {
|
||||
/**
|
||||
* Very complex field x
|
||||
*/
|
||||
val <caret>x = x
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
// "Move to constructor" "true"
|
||||
class Complex(
|
||||
/**
|
||||
* Very complex field x
|
||||
*/
|
||||
val x: Int, y: Double, z: String) {
|
||||
}
|
||||
Reference in New Issue
Block a user