KT-9839 related, secondary constructor to primary: comment restoration
(cherry picked from commit 998e39e)
This commit is contained in:
committed by
Mikhail Glukhikh
parent
725df49c8c
commit
d1958be2a8
+13
@@ -0,0 +1,13 @@
|
||||
class WithComments {
|
||||
/**
|
||||
* A very important property
|
||||
*/
|
||||
val veryImportant: Any
|
||||
|
||||
/**
|
||||
* A constructor
|
||||
*/
|
||||
constructor<caret>(/* Some parameter */veryImportant: Any) {
|
||||
this.veryImportant = veryImportant
|
||||
}
|
||||
}
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class WithComments/* Some parameter */
|
||||
/**
|
||||
* A constructor
|
||||
*/(
|
||||
/**
|
||||
* A very important property
|
||||
*/
|
||||
val veryImportant: Any) {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user