Drop KFunction.isTailrec

The fate of this modifier seems unclear, and there doesn't seem to be any
valuable use cases for it in reflection
This commit is contained in:
Alexander Udalov
2016-11-14 11:08:44 +03:00
parent 5e73dc4a4c
commit 7e82d139cf
6 changed files with 0 additions and 32 deletions
@@ -52,14 +52,6 @@ public interface KFunction<out R> : KCallable<R>, Function<R> {
@SinceKotlin("1.1")
public val isInfix: Boolean
/**
* `true` if this function is `tailrec`.
* See the [Kotlin language documentation](https://kotlinlang.org/docs/reference/functions.html#tail-recursive-functions)
* for more information.
*/
@SinceKotlin("1.1")
public val isTailrec: Boolean
/**
* `true` if this is a suspending function.
*/