Revert bf38f56261
This commit is contained in:
+1
-1
@@ -1274,7 +1274,7 @@ kotlin.annotation.Target(allowedTargets = {AnnotationTarget.VALUE_PARAMETER}) ko
|
||||
/*primary*/ public constructor noinline()
|
||||
}
|
||||
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FUNCTION}) kotlin.annotation.Retention(value = AnnotationRetention.SOURCE) kotlin.annotation.annotation() public final class tailRecursive : kotlin.Annotation {
|
||||
kotlin.annotation.Target(allowedTargets = {AnnotationTarget.FUNCTION}) kotlin.Deprecated(replaceWith = kotlin.ReplaceWith(expression = "kotlin.tailrec", imports = {}), value = "Use kotlin.tailrec instead") kotlin.annotation.Retention(value = AnnotationRetention.SOURCE) kotlin.annotation.annotation() public final class tailRecursive : kotlin.Annotation {
|
||||
/*primary*/ public constructor tailRecursive()
|
||||
}
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ public annotation class Suppress(vararg val names: String)
|
||||
* backend.
|
||||
*/
|
||||
@Target(FUNCTION)
|
||||
// @deprecated("Use kotlin.tailrec instead", ReplaceWith("kotlin.tailrec"))
|
||||
@Deprecated("Use kotlin.tailrec instead", ReplaceWith("kotlin.tailrec"))
|
||||
@Retention(SOURCE)
|
||||
public annotation class tailRecursive
|
||||
|
||||
|
||||
@@ -16,14 +16,14 @@
|
||||
|
||||
package kotlin.reflect
|
||||
|
||||
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
public interface KTopLevelFunction<out R> : KFunction<R>
|
||||
|
||||
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
public interface KTopLevelExtensionFunction<in E, out R>
|
||||
|
||||
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
public interface KMemberFunction<in T, out R> : KFunction<R>
|
||||
|
||||
// @deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
@Deprecated("This class will be dropped in M13 because it was a part of an overly complex API. Use KFunction instead")
|
||||
public interface KLocalFunction<out R> : KFunction<R>
|
||||
|
||||
Reference in New Issue
Block a user