Soften back deprecation level for nativeGetter/Setter/Invoke annotations.
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user