Analysis API: pretty print declarations additionaly to debug rendering in some tests

This commit is contained in:
Ilya Kirillov
2021-11-30 13:16:46 +01:00
parent bad91915a6
commit 6e4c87f138
81 changed files with 918 additions and 23 deletions
@@ -0,0 +1,133 @@
infix fun and(other: kotlin.Int): kotlin.Int
operator fun compareTo(other: kotlin.Byte): kotlin.Int
operator fun compareTo(other: kotlin.Double): kotlin.Int
operator fun compareTo(other: kotlin.Float): kotlin.Int
open operator fun compareTo(other: kotlin.Int): kotlin.Int
operator fun compareTo(other: kotlin.Long): kotlin.Int
operator fun compareTo(other: kotlin.Short): kotlin.Int
operator fun dec(): kotlin.Int
operator fun div(other: kotlin.Byte): kotlin.Int
operator fun div(other: kotlin.Double): kotlin.Double
operator fun div(other: kotlin.Float): kotlin.Float
operator fun div(other: kotlin.Int): kotlin.Int
operator fun div(other: kotlin.Long): kotlin.Long
operator fun div(other: kotlin.Short): kotlin.Int
operator fun inc(): kotlin.Int
fun inv(): kotlin.Int
operator fun minus(other: kotlin.Byte): kotlin.Int
operator fun minus(other: kotlin.Double): kotlin.Double
operator fun minus(other: kotlin.Float): kotlin.Float
operator fun minus(other: kotlin.Int): kotlin.Int
operator fun minus(other: kotlin.Long): kotlin.Long
operator fun minus(other: kotlin.Short): kotlin.Int
infix fun or(other: kotlin.Int): kotlin.Int
operator fun plus(other: kotlin.Byte): kotlin.Int
operator fun plus(other: kotlin.Double): kotlin.Double
operator fun plus(other: kotlin.Float): kotlin.Float
operator fun plus(other: kotlin.Int): kotlin.Int
operator fun plus(other: kotlin.Long): kotlin.Long
operator fun plus(other: kotlin.Short): kotlin.Int
operator fun rangeTo(other: kotlin.Byte): kotlin.ranges.IntRange
operator fun rangeTo(other: kotlin.Int): kotlin.ranges.IntRange
operator fun rangeTo(other: kotlin.Long): kotlin.ranges.LongRange
operator fun rangeTo(other: kotlin.Short): kotlin.ranges.IntRange
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Byte): kotlin.Int
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Double): kotlin.Double
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Float): kotlin.Float
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Int): kotlin.Int
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Long): kotlin.Long
@kotlin.SinceKotlin(version = "1.1")
operator fun rem(other: kotlin.Short): kotlin.Int
infix fun shl(bitCount: kotlin.Int): kotlin.Int
infix fun shr(bitCount: kotlin.Int): kotlin.Int
operator fun times(other: kotlin.Byte): kotlin.Int
operator fun times(other: kotlin.Double): kotlin.Double
operator fun times(other: kotlin.Float): kotlin.Float
operator fun times(other: kotlin.Int): kotlin.Int
operator fun times(other: kotlin.Long): kotlin.Long
operator fun times(other: kotlin.Short): kotlin.Int
open fun toByte(): kotlin.Byte
open fun toChar(): kotlin.Char
open fun toDouble(): kotlin.Double
open fun toFloat(): kotlin.Float
open fun toInt(): kotlin.Int
open fun toLong(): kotlin.Long
open fun toShort(): kotlin.Short
operator fun unaryMinus(): kotlin.Int
operator fun unaryPlus(): kotlin.Int
infix fun ushr(bitCount: kotlin.Int): kotlin.Int
infix fun xor(other: kotlin.Int): kotlin.Int
open operator fun equals(other: kotlin.Any?): kotlin.Boolean
open fun hashCode(): kotlin.Int
open fun toString(): kotlin.String
companion object
constructor(p0: kotlin.Int)
private constructor()