Soften back deprecation level for nativeGetter/Setter/Invoke annotations.

This commit is contained in:
Ilya Gorbunov
2017-01-27 00:48:46 +03:00
parent 4202abac63
commit 20f175d091
+3 -3
View File
@@ -23,15 +23,15 @@ import kotlin.annotation.AnnotationTarget.*
public annotation class native(@Deprecated public val name: String = "")
@Target(FUNCTION)
@Deprecated("Use inline extension function with body using dynamic", level = DeprecationLevel.ERROR)
@Deprecated("Use inline extension function with body using dynamic")
public annotation class nativeGetter
@Target(FUNCTION)
@Deprecated("Use inline extension function with body using dynamic", level = DeprecationLevel.ERROR)
@Deprecated("Use inline extension function with body using dynamic")
public annotation class nativeSetter
@Target(FUNCTION)
@Deprecated("Use inline extension function with body using dynamic", level = DeprecationLevel.ERROR)
@Deprecated("Use inline extension function with body using dynamic")
public annotation class nativeInvoke
@Target(CLASS, FUNCTION, PROPERTY)