Implement option for wrapping parameter annotations

This commit is contained in:
Dmitry Jemerov
2017-06-22 19:39:52 +02:00
parent be15ee3c03
commit 6c62b60147
6 changed files with 62 additions and 8 deletions
@@ -0,0 +1,7 @@
fun foo(@Deprecated("x")
x: Int,
@Deprecated("y")
@Deprecated("z")
y: Int)
// SET_INT: PARAMETER_ANNOTATION_WRAP = 2
+3
View File
@@ -0,0 +1,3 @@
fun foo(@Deprecated("x") x: Int, @Deprecated("y") @Deprecated("z") y: Int)
// SET_INT: PARAMETER_ANNOTATION_WRAP = 2