Add options for wrapping local variable and property annotations

#KT-14950 Fixed
This commit is contained in:
Dmitry Jemerov
2017-07-18 19:36:08 +02:00
parent 050ff03b07
commit 951392005b
11 changed files with 94 additions and 15 deletions
@@ -4,5 +4,6 @@ annotation class Annotation3(val a: Int = 0)
class TestClass(@Annotation1(42) @Annotation3(42) text: String = "LoremIpsum") {
private @Annotation1(42) @field:Annotation2(42) val text = text
private @Annotation1(42) @field:Annotation2(42)
val text = text
}
@@ -3,5 +3,6 @@
annotation class PropertyAnnotation(val a: Int = 0)
class TestClass(text: String = "LoremIpsum") {
private @PropertyAnnotation(42) val text = text
private @PropertyAnnotation(42)
val text = text
}