Add 'DeprecationLevel' parameter to 'Deprecated'

This commit is contained in:
Yan Zhulanow
2015-10-05 18:04:38 +03:00
parent fd3c28c950
commit d90585624f
31 changed files with 165 additions and 128 deletions
@@ -1,6 +1,6 @@
package test
@kotlin.Deprecated(value = "Deprecated in Java") public open class JavaDocDeprecated {
@kotlin.Deprecated(message = "Deprecated in Java") public open class JavaDocDeprecated {
public constructor JavaDocDeprecated()
@kotlin.Deprecated(value = "Deprecated in Java") public open fun getFoo(/*0*/ p0: kotlin.String!): kotlin.String!
@kotlin.Deprecated(message = "Deprecated in Java") public open fun getFoo(/*0*/ p0: kotlin.String!): kotlin.String!
}