This commit is contained in:
Denis Zharkov
2015-09-07 12:44:08 +03:00
parent fc447e2d2f
commit d7baef3f8d
3 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -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()
}
+1 -1
View File
@@ -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>