Binding: all current tests are green.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
abstract class AbstractClass {
|
||||
abstract fun abstractFun()
|
||||
abstract val abstractVal: Int
|
||||
abstract var abstractVar: Int
|
||||
}
|
||||
|
||||
interface Interface {
|
||||
abstract fun abstractFun()
|
||||
abstract val abstractVal: Int
|
||||
abstract var abstractVar: Int
|
||||
}
|
||||
|
||||
@@ -0,0 +1,36 @@
|
||||
FILE /abstractMembers.kt
|
||||
CLASS CLASS AbstractClass
|
||||
$new: VALUE_PARAMETER <receiver: AbstractClass>
|
||||
CONSTRUCTOR public constructor AbstractClass()
|
||||
BLOCK_BODY
|
||||
DELEGATING_CONSTRUCTOR_CALL 'constructor Any()'
|
||||
INSTANCE_INITIALIZER_CALL classDescriptor='AbstractClass'
|
||||
FUN public abstract fun abstractFun(): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: AbstractClass>
|
||||
PROPERTY public abstract val abstractVal: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-abstractVal>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: AbstractClass>
|
||||
PROPERTY public abstract var abstractVar: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-abstractVar>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: AbstractClass>
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <set-abstractVar>(<set-?>: kotlin.Int): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: AbstractClass>
|
||||
VALUE_PARAMETER value-parameter <set-?>: kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
CLASS INTERFACE Interface
|
||||
FUN public abstract fun abstractFun(): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: Interface>
|
||||
PROPERTY public abstract val abstractVal: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-abstractVal>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: Interface>
|
||||
PROPERTY public abstract var abstractVar: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-abstractVar>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: Interface>
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <set-abstractVar>(<set-?>: kotlin.Int): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: Interface>
|
||||
VALUE_PARAMETER value-parameter <set-?>: kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
@@ -39,48 +39,24 @@ FILE /delegatedImplementation.kt
|
||||
PROPERTY public abstract val x: kotlin.String
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-x>(): kotlin.String
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-x>(): String'
|
||||
GET_FIELD 'x: String' type=kotlin.String origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
PROPERTY public abstract var y: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-y>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-y>(): Int'
|
||||
GET_FIELD 'y: Int' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <set-y>(<set-?>: kotlin.Int): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
VALUE_PARAMETER value-parameter <set-?>: kotlin.Int
|
||||
BLOCK_BODY
|
||||
SET_FIELD 'y: Int' type=kotlin.Unit origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
value: GET_VAR 'value-parameter <set-?>: Int' type=kotlin.Int origin=null
|
||||
PROPERTY public abstract val kotlin.Byte.z1: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun kotlin.Byte.<get-z1>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
$receiver: VALUE_PARAMETER <receiver: z1: Int on Byte>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-z1>() on Byte: Int'
|
||||
GET_FIELD 'z1: Int on Byte' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
PROPERTY public abstract var kotlin.Byte.z2: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun kotlin.Byte.<get-z2>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
$receiver: VALUE_PARAMETER <receiver: z2: Int on Byte>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-z2>() on Byte: Int'
|
||||
GET_FIELD 'z2: Int on Byte' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun kotlin.Byte.<set-z2>(<set-?>: kotlin.Int): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: IOther>
|
||||
$receiver: VALUE_PARAMETER <receiver: z2: Int on Byte>
|
||||
VALUE_PARAMETER value-parameter <set-?>: kotlin.Int
|
||||
BLOCK_BODY
|
||||
SET_FIELD 'z2: Int on Byte' type=kotlin.Unit origin=null
|
||||
receiver: GET_VAR '<receiver: IOther>' type=IOther origin=null
|
||||
value: GET_VAR 'value-parameter <set-?>: Int' type=kotlin.Int origin=null
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
|
||||
@@ -10,10 +10,6 @@ FILE /fakeOverrides.kt
|
||||
PROPERTY public abstract val bar: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-bar>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: IBar>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-bar>(): Int'
|
||||
GET_FIELD 'bar: Int' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: IBar>' type=IBar origin=null
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
|
||||
@@ -3,10 +3,6 @@ FILE /interfaceProperties.kt
|
||||
PROPERTY public abstract val test1: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-test1>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: C>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-test1>(): Int'
|
||||
GET_FIELD 'test1: Int' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: C>' type=C origin=null
|
||||
PROPERTY public open val test2: kotlin.Int
|
||||
FUN public open fun <get-test2>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: C>
|
||||
@@ -16,17 +12,9 @@ FILE /interfaceProperties.kt
|
||||
PROPERTY public abstract var test3: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-test3>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: C>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-test3>(): Int'
|
||||
GET_FIELD 'test3: Int' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: C>' type=C origin=null
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <set-test3>(<set-?>: kotlin.Int): kotlin.Unit
|
||||
$this: VALUE_PARAMETER <receiver: C>
|
||||
VALUE_PARAMETER value-parameter <set-?>: kotlin.Int
|
||||
BLOCK_BODY
|
||||
SET_FIELD 'test3: Int' type=kotlin.Unit origin=null
|
||||
receiver: GET_VAR '<receiver: C>' type=C origin=null
|
||||
value: GET_VAR 'value-parameter <set-?>: Int' type=kotlin.Int origin=null
|
||||
PROPERTY public open var test4: kotlin.Int
|
||||
FUN public open fun <get-test4>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: C>
|
||||
|
||||
@@ -7,10 +7,6 @@ FILE /delegatedMembers.kt
|
||||
PROPERTY public abstract val bar: kotlin.Int
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-bar>(): kotlin.Int
|
||||
$this: VALUE_PARAMETER <receiver: IBase>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-bar>(): Int'
|
||||
GET_FIELD 'bar: Int' type=kotlin.Int origin=null
|
||||
receiver: GET_VAR '<receiver: IBase>' type=IBase<T> origin=null
|
||||
FUN public abstract fun <X> qux(t: T, x: X): kotlin.Unit
|
||||
TYPE_PARAMETER <X>
|
||||
$this: VALUE_PARAMETER <receiver: IBase>
|
||||
|
||||
@@ -53,10 +53,6 @@ FILE /enumEntryAsReceiver.kt
|
||||
PROPERTY public abstract val value: () -> kotlin.String
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public abstract fun <get-value>(): () -> kotlin.String
|
||||
$this: VALUE_PARAMETER <receiver: X>
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-value>(): () -> String'
|
||||
GET_FIELD 'value: () -> String' type=() -> kotlin.String origin=null
|
||||
receiver: GET_VAR '<receiver: X>' type=X origin=null
|
||||
FUN FAKE_OVERRIDE protected final override fun clone(): kotlin.Any
|
||||
FUN FAKE_OVERRIDE protected/*protected and package*/ final override fun finalize(): kotlin.Unit
|
||||
FUN FAKE_OVERRIDE public final override fun getDeclaringClass(): java.lang.Class<X!>!
|
||||
|
||||
@@ -24,6 +24,7 @@ FILE /Derived.kt
|
||||
receiver: GET_VAR '<receiver: Derived>' type=Derived origin=null
|
||||
value: GET_VAR 'value-parameter value: Int' type=kotlin.Int origin=null
|
||||
PROPERTY FAKE_OVERRIDE public final override var value: kotlin.Int
|
||||
FIELD FAKE_OVERRIDE public final override var value: kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
|
||||
@@ -90,6 +90,7 @@ FILE /kt16904.kt
|
||||
receiver: GET_VAR '<receiver: Test2>' type=Test2 origin=null
|
||||
value: CONST Int type=kotlin.Int value='42'
|
||||
PROPERTY FAKE_OVERRIDE public final override var field: kotlin.Int
|
||||
FIELD FAKE_OVERRIDE public final override var field: kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
|
||||
@@ -19,6 +19,7 @@ FILE /Derived.kt
|
||||
value: TYPE_OP type=kotlin.String! origin=IMPLICIT_CAST typeOperand=kotlin.String!
|
||||
GET_VAR 'value-parameter v: Any' type=kotlin.Any origin=null
|
||||
PROPERTY FAKE_OVERRIDE public final override var value: kotlin.String!
|
||||
FIELD FAKE_OVERRIDE public final override var value: kotlin.String!
|
||||
FUN FAKE_OVERRIDE public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
FUN FAKE_OVERRIDE public open override fun hashCode(): kotlin.Int
|
||||
FUN FAKE_OVERRIDE public open override fun toString(): kotlin.String
|
||||
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
// !DUMP_DEPENDENCIES
|
||||
|
||||
val test = 2 + 2
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
FILE /simple.kt
|
||||
PROPERTY public val test: kotlin.Int = 4
|
||||
FIELD PROPERTY_BACKING_FIELD public val test: kotlin.Int = 4
|
||||
EXPRESSION_BODY
|
||||
CALL 'plus(Int): Int' type=kotlin.Int origin=PLUS
|
||||
$this: CONST Int type=kotlin.Int value='2'
|
||||
other: CONST Int type=kotlin.Int value='2'
|
||||
FUN DEFAULT_PROPERTY_ACCESSOR public fun <get-test>(): kotlin.Int
|
||||
BLOCK_BODY
|
||||
RETURN type=kotlin.Nothing from='<get-test>(): Int'
|
||||
GET_FIELD 'test: Int' type=kotlin.Int origin=null
|
||||
@@ -0,0 +1,134 @@
|
||||
MODULE_FRAGMENT <built-ins module>
|
||||
EXTERNAL_PACKAGE_FRAGMENT kotlin
|
||||
CLASS IR_EXTERNAL_DECLARATION_STUB CLASS Int
|
||||
CONSTRUCTOR IR_EXTERNAL_DECLARATION_STUB private constructor Int()
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun and(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun compareTo(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun compareTo(other: kotlin.Double): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun compareTo(other: kotlin.Float): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun compareTo(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun compareTo(other: kotlin.Long): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun compareTo(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun dec(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun div(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Any?
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun hashCode(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun inc(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final fun inv(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun minus(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.Deprecated public final operator fun mod(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun or(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun plus(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun rangeTo(other: kotlin.Byte): kotlin.ranges.IntRange
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun rangeTo(other: kotlin.Int): kotlin.ranges.IntRange
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun rangeTo(other: kotlin.Long): kotlin.ranges.LongRange
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun rangeTo(other: kotlin.Short): kotlin.ranges.IntRange
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB @kotlin.SinceKotlin public final operator fun rem(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun shl(bitCount: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter bitCount: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun shr(bitCount: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter bitCount: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Byte): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Double): kotlin.Double
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Float): kotlin.Float
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Long): kotlin.Long
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun times(other: kotlin.Short): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toByte(): kotlin.Byte
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toChar(): kotlin.Char
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toDouble(): kotlin.Double
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toFloat(): kotlin.Float
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toInt(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toLong(): kotlin.Long
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toShort(): kotlin.Short
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toString(): kotlin.String
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun unaryMinus(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final operator fun unaryPlus(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun ushr(bitCount: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter bitCount: kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final infix fun xor(other: kotlin.Int): kotlin.Int
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Int
|
||||
CLASS IR_EXTERNAL_DECLARATION_STUB OBJECT companion object of Int
|
||||
CONSTRUCTOR IR_EXTERNAL_DECLARATION_STUB private constructor Companion()
|
||||
PROPERTY IR_EXTERNAL_DECLARATION_STUB public const final val MAX_VALUE: kotlin.Int = 2147483647
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final fun <get-MAX_VALUE>(): kotlin.Int
|
||||
PROPERTY IR_EXTERNAL_DECLARATION_STUB public const final val MIN_VALUE: kotlin.Int = -2147483648
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public final fun <get-MIN_VALUE>(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun equals(other: kotlin.Any?): kotlin.Boolean
|
||||
VALUE_PARAMETER value-parameter other: kotlin.Any?
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun hashCode(): kotlin.Int
|
||||
FUN IR_EXTERNAL_DECLARATION_STUB public open override fun toString(): kotlin.String
|
||||
Reference in New Issue
Block a user