diff --git a/compiler/testData/builtin-classes.txt b/compiler/testData/builtin-classes.txt index 6a079bdabf5..51fe717d7a5 100644 --- a/compiler/testData/builtin-classes.txt +++ b/compiler/testData/builtin-classes.txt @@ -6,39 +6,40 @@ public open class jet.Any { public final class jet.Array : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int, /*1*/ init: jet.Function1): jet.Array public final fun get(/*0*/ index: jet.Int): T + public final val indices: jet.IntRange public final fun iterator(): jet.Iterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: T): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public final class jet.Boolean : jet.Comparable { public final /*constructor*/ fun (): jet.Boolean public final fun and(/*0*/ other: jet.Boolean): jet.Boolean + public open override /*1*/ fun compareTo(/*0*/ that: jet.Boolean): jet.Int public final fun equals(/*0*/ other: jet.Any?): jet.Boolean public final fun not(): jet.Boolean public final fun or(/*0*/ other: jet.Boolean): jet.Boolean public final fun xor(/*0*/ other: jet.Boolean): jet.Boolean - public open override /*1*/ fun compareTo(/*0*/ that: jet.Boolean): jet.Int } public final class jet.BooleanArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.BooleanArray public final fun get(/*0*/ index: jet.Int): jet.Boolean + public final val indices: jet.IntRange public final fun iterator(): jet.BooleanIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Boolean): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.BooleanIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.BooleanIterator } public abstract class jet.BooleanIterator : jet.Iterator { - public abstract fun nextBoolean(): jet.Boolean - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.BooleanIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Boolean + public abstract fun nextBoolean(): jet.Boolean } public final class jet.Byte : jet.Number, jet.Comparable { public final /*constructor*/ fun (): jet.Byte + public open override /*1*/ fun compareTo(/*0*/ other: jet.Byte): jet.Int public final fun compareTo(/*0*/ other: jet.Char): jet.Int public final fun compareTo(/*0*/ other: jet.Double): jet.Int public final fun compareTo(/*0*/ other: jet.Float): jet.Int @@ -60,6 +61,8 @@ public final class jet.Byte : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.IntRange public final fun downto(/*0*/ other: jet.Long): jet.LongRange public final fun downto(/*0*/ other: jet.Short): jet.ShortRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Byte public final fun minus(): jet.Byte public final fun minus(/*0*/ other: jet.Byte): jet.Int @@ -98,16 +101,6 @@ public final class jet.Byte : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Int public final fun times(/*0*/ other: jet.Long): jet.Long public final fun times(/*0*/ other: jet.Short): jet.Int - public final fun upto(/*0*/ other: jet.Byte): jet.ByteRange - public final fun upto(/*0*/ other: jet.Char): jet.CharRange - public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Float): jet.FloatRange - public final fun upto(/*0*/ other: jet.Int): jet.IntRange - public final fun upto(/*0*/ other: jet.Long): jet.LongRange - public final fun upto(/*0*/ other: jet.Short): jet.ShortRange - public open override /*1*/ fun compareTo(/*0*/ other: jet.Byte): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int public open override /*1*/ fun toByte(): jet.Byte public open override /*1*/ fun toChar(): jet.Char public open override /*1*/ fun toDouble(): jet.Double @@ -115,39 +108,47 @@ public final class jet.Byte : jet.Number, jet.Comparable { public open override /*1*/ fun toInt(): jet.Int public open override /*1*/ fun toLong(): jet.Long public open override /*1*/ fun toShort(): jet.Short + public final fun upto(/*0*/ other: jet.Byte): jet.ByteRange + public final fun upto(/*0*/ other: jet.Char): jet.CharRange + public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Float): jet.FloatRange + public final fun upto(/*0*/ other: jet.Int): jet.IntRange + public final fun upto(/*0*/ other: jet.Long): jet.LongRange + public final fun upto(/*0*/ other: jet.Short): jet.ShortRange } public final class jet.ByteArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.ByteArray public final fun get(/*0*/ index: jet.Int): jet.Byte + public final val indices: jet.IntRange public final fun iterator(): jet.ByteIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Byte): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.ByteIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.ByteIterator } public abstract class jet.ByteIterator : jet.Iterator { - public abstract fun nextByte(): jet.Byte - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.ByteIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Byte + public abstract fun nextByte(): jet.Byte } public final class jet.ByteRange : jet.Range, jet.ByteIterable { public final /*constructor*/ fun (/*0*/ start: jet.Byte, /*1*/ size: jet.Int): jet.ByteRange - public final fun minus(): jet.ByteRange - public final fun step(/*0*/ step: jet.Int): jet.ByteIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Byte): jet.Boolean public final val end: jet.Byte public final val isReversed: jet.Boolean + public open override /*1*/ fun iterator(): jet.ByteIterator public final val iteratorStart: jet.Byte + public final fun minus(): jet.ByteRange public final val size: jet.Int public final val start: jet.Byte - public open override /*1*/ fun contains(/*0*/ elem: jet.Byte): jet.Boolean - public open override /*1*/ fun iterator(): jet.ByteIterator + public final fun step(/*0*/ step: jet.Int): jet.ByteIterator } public final class jet.Char : jet.Number, jet.Comparable { public final /*constructor*/ fun (): jet.Char public final fun compareTo(/*0*/ other: jet.Byte): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Char): jet.Int public final fun compareTo(/*0*/ other: jet.Double): jet.Int public final fun compareTo(/*0*/ other: jet.Float): jet.Int public final fun compareTo(/*0*/ other: jet.Int): jet.Int @@ -167,6 +168,8 @@ public final class jet.Char : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.IntRange public final fun downto(/*0*/ other: jet.Long): jet.LongRange public final fun downto(/*0*/ other: jet.Short): jet.ShortRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Char public final fun minus(): jet.Int public final fun minus(/*0*/ other: jet.Byte): jet.Int @@ -202,16 +205,6 @@ public final class jet.Char : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Int public final fun times(/*0*/ other: jet.Long): jet.Long public final fun times(/*0*/ other: jet.Short): jet.Int - public final fun upto(/*0*/ other: jet.Byte): jet.CharRange - public final fun upto(/*0*/ other: jet.Char): jet.CharRange - public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Float): jet.FloatRange - public final fun upto(/*0*/ other: jet.Int): jet.IntRange - public final fun upto(/*0*/ other: jet.Long): jet.LongRange - public final fun upto(/*0*/ other: jet.Short): jet.ShortRange - public open override /*1*/ fun compareTo(/*0*/ other: jet.Char): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int public open override /*1*/ fun toByte(): jet.Byte public open override /*1*/ fun toChar(): jet.Char public open override /*1*/ fun toDouble(): jet.Double @@ -219,40 +212,47 @@ public final class jet.Char : jet.Number, jet.Comparable { public open override /*1*/ fun toInt(): jet.Int public open override /*1*/ fun toLong(): jet.Long public open override /*1*/ fun toShort(): jet.Short + public final fun upto(/*0*/ other: jet.Byte): jet.CharRange + public final fun upto(/*0*/ other: jet.Char): jet.CharRange + public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Float): jet.FloatRange + public final fun upto(/*0*/ other: jet.Int): jet.IntRange + public final fun upto(/*0*/ other: jet.Long): jet.LongRange + public final fun upto(/*0*/ other: jet.Short): jet.ShortRange } public final class jet.CharArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.CharArray public final fun get(/*0*/ index: jet.Int): jet.Char + public final val indices: jet.IntRange public final fun iterator(): jet.CharIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Char): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.CharIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.CharIterator } public abstract class jet.CharIterator : jet.Iterator { - public abstract fun nextChar(): jet.Char - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.CharIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Char + public abstract fun nextChar(): jet.Char } public final class jet.CharRange : jet.Range, jet.CharIterable { public final /*constructor*/ fun (/*0*/ start: jet.Char, /*1*/ size: jet.Int): jet.CharRange - public final fun minus(): jet.CharRange - public final fun step(/*0*/ step: jet.Int): jet.CharIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Char): jet.Boolean public final val end: jet.Char public final val isReversed: jet.Boolean + public open override /*1*/ fun iterator(): jet.CharIterator public final val iteratorStart: jet.Char + public final fun minus(): jet.CharRange public final val size: jet.Int public final val start: jet.Char - public open override /*1*/ fun contains(/*0*/ elem: jet.Char): jet.Boolean - public open override /*1*/ fun iterator(): jet.CharIterator + public final fun step(/*0*/ step: jet.Int): jet.CharIterator } public abstract trait jet.CharSequence : jet.Any { public abstract fun get(/*0*/ index: jet.Int): jet.Char - public abstract fun toString(): jet.String public abstract val length: jet.Int + public abstract fun toString(): jet.String } public abstract trait jet.Comparable : jet.Any { public abstract fun compareTo(/*0*/ other: T): jet.Int @@ -261,6 +261,7 @@ public final class jet.Double : jet.Number, jet.Comparable { public final /*constructor*/ fun (): jet.Double public final fun compareTo(/*0*/ other: jet.Byte): jet.Int public final fun compareTo(/*0*/ other: jet.Char): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Double): jet.Int public final fun compareTo(/*0*/ other: jet.Float): jet.Int public final fun compareTo(/*0*/ other: jet.Int): jet.Int public final fun compareTo(/*0*/ other: jet.Long): jet.Int @@ -280,6 +281,8 @@ public final class jet.Double : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.DoubleRange public final fun downto(/*0*/ other: jet.Long): jet.DoubleRange public final fun downto(/*0*/ other: jet.Short): jet.DoubleRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Double public final fun minus(): jet.Double public final fun minus(/*0*/ other: jet.Byte): jet.Double @@ -317,16 +320,6 @@ public final class jet.Double : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Double public final fun times(/*0*/ other: jet.Long): jet.Double public final fun times(/*0*/ other: jet.Short): jet.Double - public final fun upto(/*0*/ other: jet.Byte): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Char): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Float): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Int): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Long): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Short): jet.DoubleRange - public open override /*1*/ fun compareTo(/*0*/ other: jet.Double): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int public open override /*1*/ fun toByte(): jet.Byte public open override /*1*/ fun toChar(): jet.Char public open override /*1*/ fun toDouble(): jet.Double @@ -334,131 +327,139 @@ public final class jet.Double : jet.Number, jet.Comparable { public open override /*1*/ fun toInt(): jet.Int public open override /*1*/ fun toLong(): jet.Long public open override /*1*/ fun toShort(): jet.Short + public final fun upto(/*0*/ other: jet.Byte): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Char): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Float): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Int): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Long): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Short): jet.DoubleRange } public final class jet.DoubleArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.DoubleArray public final fun get(/*0*/ index: jet.Int): jet.Double + public final val indices: jet.IntRange public final fun iterator(): jet.DoubleIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Double): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.DoubleIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.DoubleIterator } public abstract class jet.DoubleIterator : jet.Iterator { - public abstract fun nextDouble(): jet.Double - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.DoubleIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Double + public abstract fun nextDouble(): jet.Double } public final class jet.DoubleRange : jet.Range { public final /*constructor*/ fun (/*0*/ start: jet.Double, /*1*/ size: jet.Double): jet.DoubleRange - public final fun minus(): jet.DoubleRange - public final fun step(/*0*/ step: jet.Double): jet.DoubleIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Double): jet.Boolean public final val end: jet.Double public final val isReversed: jet.Boolean + public final fun minus(): jet.DoubleRange public final val size: jet.Double public final val start: jet.Double - public open override /*1*/ fun contains(/*0*/ elem: jet.Double): jet.Boolean + public final fun step(/*0*/ step: jet.Double): jet.DoubleIterator } public abstract class jet.ExtensionFunction0 : jet.Any { - public abstract fun T.invoke(): R public final /*constructor*/ fun (): jet.ExtensionFunction0 + public abstract fun T.invoke(): R } public abstract class jet.ExtensionFunction1 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1): R public final /*constructor*/ fun (): jet.ExtensionFunction1 + public abstract fun T.invoke(/*0*/ p1: P1): R } public abstract class jet.ExtensionFunction10 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R public final /*constructor*/ fun (): jet.ExtensionFunction10 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R } public abstract class jet.ExtensionFunction11 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R public final /*constructor*/ fun (): jet.ExtensionFunction11 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R } public abstract class jet.ExtensionFunction12 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R public final /*constructor*/ fun (): jet.ExtensionFunction12 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R } public abstract class jet.ExtensionFunction13 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R public final /*constructor*/ fun (): jet.ExtensionFunction13 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R } public abstract class jet.ExtensionFunction14 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R public final /*constructor*/ fun (): jet.ExtensionFunction14 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R } public abstract class jet.ExtensionFunction15 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R public final /*constructor*/ fun (): jet.ExtensionFunction15 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R } public abstract class jet.ExtensionFunction16 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R public final /*constructor*/ fun (): jet.ExtensionFunction16 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R } public abstract class jet.ExtensionFunction17 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R public final /*constructor*/ fun (): jet.ExtensionFunction17 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R } public abstract class jet.ExtensionFunction18 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R public final /*constructor*/ fun (): jet.ExtensionFunction18 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R } public abstract class jet.ExtensionFunction19 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R public final /*constructor*/ fun (): jet.ExtensionFunction19 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R } public abstract class jet.ExtensionFunction2 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2): R public final /*constructor*/ fun (): jet.ExtensionFunction2 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2): R } public abstract class jet.ExtensionFunction20 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R public final /*constructor*/ fun (): jet.ExtensionFunction20 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R } public abstract class jet.ExtensionFunction21 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R public final /*constructor*/ fun (): jet.ExtensionFunction21 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R } public abstract class jet.ExtensionFunction22 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R public final /*constructor*/ fun (): jet.ExtensionFunction22 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R } public abstract class jet.ExtensionFunction3 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R public final /*constructor*/ fun (): jet.ExtensionFunction3 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R } public abstract class jet.ExtensionFunction4 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R public final /*constructor*/ fun (): jet.ExtensionFunction4 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R } public abstract class jet.ExtensionFunction5 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R public final /*constructor*/ fun (): jet.ExtensionFunction5 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R } public abstract class jet.ExtensionFunction6 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R public final /*constructor*/ fun (): jet.ExtensionFunction6 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R } public abstract class jet.ExtensionFunction7 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R public final /*constructor*/ fun (): jet.ExtensionFunction7 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R } public abstract class jet.ExtensionFunction8 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R public final /*constructor*/ fun (): jet.ExtensionFunction8 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R } public abstract class jet.ExtensionFunction9 : jet.Any { - public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R public final /*constructor*/ fun (): jet.ExtensionFunction9 + public abstract fun T.invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R } public final class jet.Float : jet.Number, jet.Comparable { public final /*constructor*/ fun (): jet.Float public final fun compareTo(/*0*/ other: jet.Byte): jet.Int public final fun compareTo(/*0*/ other: jet.Char): jet.Int public final fun compareTo(/*0*/ other: jet.Double): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Float): jet.Int public final fun compareTo(/*0*/ other: jet.Int): jet.Int public final fun compareTo(/*0*/ other: jet.Long): jet.Int public final fun compareTo(/*0*/ other: jet.Short): jet.Int @@ -477,6 +478,8 @@ public final class jet.Float : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.FloatRange public final fun downto(/*0*/ other: jet.Long): jet.DoubleRange public final fun downto(/*0*/ other: jet.Short): jet.FloatRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Float public final fun minus(): jet.Float public final fun minus(/*0*/ other: jet.Byte): jet.Float @@ -515,16 +518,6 @@ public final class jet.Float : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Float public final fun times(/*0*/ other: jet.Long): jet.Float public final fun times(/*0*/ other: jet.Short): jet.Float - public final fun upto(/*0*/ other: jet.Byte): jet.FloatRange - public final fun upto(/*0*/ other: jet.Char): jet.FloatRange - public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Float): jet.FloatRange - public final fun upto(/*0*/ other: jet.Int): jet.FloatRange - public final fun upto(/*0*/ other: jet.Long): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Short): jet.FloatRange - public open override /*1*/ fun compareTo(/*0*/ other: jet.Float): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int public open override /*1*/ fun toByte(): jet.Byte public open override /*1*/ fun toChar(): jet.Char public open override /*1*/ fun toDouble(): jet.Double @@ -532,125 +525,132 @@ public final class jet.Float : jet.Number, jet.Comparable { public open override /*1*/ fun toInt(): jet.Int public open override /*1*/ fun toLong(): jet.Long public open override /*1*/ fun toShort(): jet.Short + public final fun upto(/*0*/ other: jet.Byte): jet.FloatRange + public final fun upto(/*0*/ other: jet.Char): jet.FloatRange + public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Float): jet.FloatRange + public final fun upto(/*0*/ other: jet.Int): jet.FloatRange + public final fun upto(/*0*/ other: jet.Long): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Short): jet.FloatRange } public final class jet.FloatArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.FloatArray public final fun get(/*0*/ index: jet.Int): jet.Float + public final val indices: jet.IntRange public final fun iterator(): jet.FloatIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Float): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.FloatIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.FloatIterator } public abstract class jet.FloatIterator : jet.Iterator { - public abstract fun nextFloat(): jet.Float - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.FloatIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Float + public abstract fun nextFloat(): jet.Float } public final class jet.FloatRange : jet.Range { public final /*constructor*/ fun (/*0*/ start: jet.Float, /*1*/ size: jet.Float): jet.FloatRange - public final fun minus(): jet.FloatRange - public final fun step(/*0*/ step: jet.Float): jet.FloatIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Float): jet.Boolean public final val end: jet.Float public final val isReversed: jet.Boolean + public final fun minus(): jet.FloatRange public final val size: jet.Float public final val start: jet.Float - public open override /*1*/ fun contains(/*0*/ elem: jet.Float): jet.Boolean + public final fun step(/*0*/ step: jet.Float): jet.FloatIterator } public abstract class jet.Function0 : jet.Any { - public abstract fun invoke(): R public final /*constructor*/ fun (): jet.Function0 + public abstract fun invoke(): R } public abstract class jet.Function1 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1): R public final /*constructor*/ fun (): jet.Function1 + public abstract fun invoke(/*0*/ p1: P1): R } public abstract class jet.Function10 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R public final /*constructor*/ fun (): jet.Function10 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10): R } public abstract class jet.Function11 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R public final /*constructor*/ fun (): jet.Function11 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11): R } public abstract class jet.Function12 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R public final /*constructor*/ fun (): jet.Function12 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12): R } public abstract class jet.Function13 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R public final /*constructor*/ fun (): jet.Function13 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13): R } public abstract class jet.Function14 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R public final /*constructor*/ fun (): jet.Function14 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14): R } public abstract class jet.Function15 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R public final /*constructor*/ fun (): jet.Function15 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15): R } public abstract class jet.Function16 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R public final /*constructor*/ fun (): jet.Function16 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16): R } public abstract class jet.Function17 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R public final /*constructor*/ fun (): jet.Function17 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17): R } public abstract class jet.Function18 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R public final /*constructor*/ fun (): jet.Function18 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18): R } public abstract class jet.Function19 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R public final /*constructor*/ fun (): jet.Function19 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19): R } public abstract class jet.Function2 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2): R public final /*constructor*/ fun (): jet.Function2 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2): R } public abstract class jet.Function20 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R public final /*constructor*/ fun (): jet.Function20 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20): R } public abstract class jet.Function21 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R public final /*constructor*/ fun (): jet.Function21 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21): R } public abstract class jet.Function22 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R public final /*constructor*/ fun (): jet.Function22 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9, /*9*/ p10: P10, /*10*/ p11: P11, /*11*/ p12: P12, /*12*/ p13: P13, /*13*/ p14: P14, /*14*/ p15: P15, /*15*/ p16: P16, /*16*/ p17: P17, /*17*/ p18: P18, /*18*/ p19: P19, /*19*/ p20: P20, /*20*/ p21: P21, /*21*/ p22: P22): R } public abstract class jet.Function3 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R public final /*constructor*/ fun (): jet.Function3 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3): R } public abstract class jet.Function4 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R public final /*constructor*/ fun (): jet.Function4 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4): R } public abstract class jet.Function5 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R public final /*constructor*/ fun (): jet.Function5 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5): R } public abstract class jet.Function6 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R public final /*constructor*/ fun (): jet.Function6 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6): R } public abstract class jet.Function7 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R public final /*constructor*/ fun (): jet.Function7 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7): R } public abstract class jet.Function8 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R public final /*constructor*/ fun (): jet.Function8 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8): R } public abstract class jet.Function9 : jet.Any { - public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R public final /*constructor*/ fun (): jet.Function9 + public abstract fun invoke(/*0*/ p1: P1, /*1*/ p2: P2, /*2*/ p3: P3, /*3*/ p4: P4, /*4*/ p5: P5, /*5*/ p6: P6, /*6*/ p7: P7, /*7*/ p8: P8, /*8*/ p9: P9): R } public abstract trait jet.Hashable : jet.Any { public abstract fun equals(/*0*/ other: jet.Any?): jet.Boolean @@ -663,6 +663,7 @@ public final class jet.Int : jet.Number, jet.Comparable { public final fun compareTo(/*0*/ other: jet.Char): jet.Int public final fun compareTo(/*0*/ other: jet.Double): jet.Int public final fun compareTo(/*0*/ other: jet.Float): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Int): jet.Int public final fun compareTo(/*0*/ other: jet.Long): jet.Int public final fun compareTo(/*0*/ other: jet.Short): jet.Int public final fun dec(): jet.Int @@ -680,6 +681,8 @@ public final class jet.Int : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.IntRange public final fun downto(/*0*/ other: jet.Long): jet.LongRange public final fun downto(/*0*/ other: jet.Short): jet.IntRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Int public final fun inv(): jet.Int public final fun minus(): jet.Int @@ -722,6 +725,13 @@ public final class jet.Int : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Int public final fun times(/*0*/ other: jet.Long): jet.Long public final fun times(/*0*/ other: jet.Short): jet.Int + public open override /*1*/ fun toByte(): jet.Byte + public open override /*1*/ fun toChar(): jet.Char + public open override /*1*/ fun toDouble(): jet.Double + public open override /*1*/ fun toFloat(): jet.Float + public open override /*1*/ fun toInt(): jet.Int + public open override /*1*/ fun toLong(): jet.Long + public open override /*1*/ fun toShort(): jet.Short public final fun upto(/*0*/ other: jet.Byte): jet.IntRange public final fun upto(/*0*/ other: jet.Char): jet.IntRange public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange @@ -731,52 +741,42 @@ public final class jet.Int : jet.Number, jet.Comparable { public final fun upto(/*0*/ other: jet.Short): jet.IntRange public final fun ushr(/*0*/ bits: jet.Int): jet.Int public final fun xor(/*0*/ other: jet.Int): jet.Int - public open override /*1*/ fun compareTo(/*0*/ other: jet.Int): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short } public final class jet.IntArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.IntArray public final fun get(/*0*/ index: jet.Int): jet.Int + public final val indices: jet.IntRange public final fun iterator(): jet.IntIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Int): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.IntIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.IntIterator } public abstract class jet.IntIterator : jet.Iterator { - public abstract fun nextInt(): jet.Int - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.IntIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Int + public abstract fun nextInt(): jet.Int } public final class jet.IntRange : jet.Range, jet.IntIterable { public final /*constructor*/ fun (/*0*/ start: jet.Int, /*1*/ size: jet.Int): jet.IntRange - public final fun minus(): jet.IntRange - public final fun step(/*0*/ step: jet.Int): jet.IntIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Int): jet.Boolean public final val end: jet.Int public final val isReversed: jet.Boolean + public open override /*1*/ fun iterator(): jet.IntIterator public final val iteratorStart: jet.Int + public final fun minus(): jet.IntRange public final val size: jet.Int public final val start: jet.Int - public open override /*1*/ fun contains(/*0*/ elem: jet.Int): jet.Boolean - public open override /*1*/ fun iterator(): jet.IntIterator + public final fun step(/*0*/ step: jet.Int): jet.IntIterator } public abstract trait jet.Iterable : jet.Any { public abstract fun iterator(): jet.Iterator } public abstract trait jet.Iterator : jet.Any { - public abstract fun next(): T public abstract val hasNext: jet.Boolean + public abstract fun next(): T } public final class jet.Long : jet.Number, jet.Comparable { public final /*constructor*/ fun (): jet.Long @@ -786,6 +786,7 @@ public final class jet.Long : jet.Number, jet.Comparable { public final fun compareTo(/*0*/ other: jet.Double): jet.Int public final fun compareTo(/*0*/ other: jet.Float): jet.Int public final fun compareTo(/*0*/ other: jet.Int): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Long): jet.Int public final fun compareTo(/*0*/ other: jet.Short): jet.Int public final fun dec(): jet.Long public final fun div(/*0*/ other: jet.Byte): jet.Long @@ -802,6 +803,8 @@ public final class jet.Long : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.LongRange public final fun downto(/*0*/ other: jet.Long): jet.LongRange public final fun downto(/*0*/ other: jet.Short): jet.LongRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Long public final fun inv(): jet.Long public final fun minus(): jet.Long @@ -844,6 +847,13 @@ public final class jet.Long : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Long public final fun times(/*0*/ other: jet.Long): jet.Long public final fun times(/*0*/ other: jet.Short): jet.Long + public open override /*1*/ fun toByte(): jet.Byte + public open override /*1*/ fun toChar(): jet.Char + public open override /*1*/ fun toDouble(): jet.Double + public open override /*1*/ fun toFloat(): jet.Float + public open override /*1*/ fun toInt(): jet.Int + public open override /*1*/ fun toLong(): jet.Long + public open override /*1*/ fun toShort(): jet.Short public final fun upto(/*0*/ other: jet.Byte): jet.LongRange public final fun upto(/*0*/ other: jet.Char): jet.LongRange public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange @@ -853,50 +863,43 @@ public final class jet.Long : jet.Number, jet.Comparable { public final fun upto(/*0*/ other: jet.Short): jet.LongRange public final fun ushr(/*0*/ bits: jet.Int): jet.Long public final fun xor(/*0*/ other: jet.Long): jet.Long - public open override /*1*/ fun compareTo(/*0*/ other: jet.Long): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int - public open override /*1*/ fun toByte(): jet.Byte - public open override /*1*/ fun toChar(): jet.Char - public open override /*1*/ fun toDouble(): jet.Double - public open override /*1*/ fun toFloat(): jet.Float - public open override /*1*/ fun toInt(): jet.Int - public open override /*1*/ fun toLong(): jet.Long - public open override /*1*/ fun toShort(): jet.Short } public final class jet.LongArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.LongArray public final fun get(/*0*/ index: jet.Int): jet.Long + public final val indices: jet.IntRange public final fun iterator(): jet.LongIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Long): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.LongIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.LongIterator } public abstract class jet.LongIterator : jet.Iterator { - public abstract fun nextLong(): jet.Long - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.LongIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Long + public abstract fun nextLong(): jet.Long } public final class jet.LongRange : jet.Range, jet.LongIterable { public final /*constructor*/ fun (/*0*/ start: jet.Long, /*1*/ size: jet.Long): jet.LongRange - public final fun minus(): jet.LongRange - public final fun step(/*0*/ step: jet.Long): jet.LongIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Long): jet.Boolean public final val end: jet.Long public final val isReversed: jet.Boolean + public open override /*1*/ fun iterator(): jet.LongIterator public final val iteratorStart: jet.Long + public final fun minus(): jet.LongRange public final val size: jet.Long public final val start: jet.Long - public open override /*1*/ fun contains(/*0*/ elem: jet.Long): jet.Boolean - public open override /*1*/ fun iterator(): jet.LongIterator + public final fun step(/*0*/ step: jet.Long): jet.LongIterator } public final class jet.Nothing { private final /*constructor*/ fun (): jet.Nothing } public abstract class jet.Number : jet.Hashable { + public final /*constructor*/ fun (): jet.Number + public abstract override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public abstract override /*1*/ fun hashCode(): jet.Int public abstract fun toByte(): jet.Byte public abstract fun toChar(): jet.Char public abstract fun toDouble(): jet.Double @@ -904,9 +907,6 @@ public abstract class jet.Number : jet.Hashable { public abstract fun toInt(): jet.Int public abstract fun toLong(): jet.Long public abstract fun toShort(): jet.Short - public abstract override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public abstract override /*1*/ fun hashCode(): jet.Int - public final /*constructor*/ fun (): jet.Number } public abstract trait jet.Range> : jet.Any { public abstract fun contains(/*0*/ item: T): jet.Boolean @@ -919,6 +919,7 @@ public final class jet.Short : jet.Number, jet.Comparable { public final fun compareTo(/*0*/ other: jet.Float): jet.Int public final fun compareTo(/*0*/ other: jet.Int): jet.Int public final fun compareTo(/*0*/ other: jet.Long): jet.Int + public open override /*1*/ fun compareTo(/*0*/ other: jet.Short): jet.Int public final fun dec(): jet.Short public final fun div(/*0*/ other: jet.Byte): jet.Int public final fun div(/*0*/ other: jet.Char): jet.Int @@ -934,6 +935,8 @@ public final class jet.Short : jet.Number, jet.Comparable { public final fun downto(/*0*/ other: jet.Int): jet.IntRange public final fun downto(/*0*/ other: jet.Long): jet.LongRange public final fun downto(/*0*/ other: jet.Short): jet.ShortRange + public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean + public open override /*1*/ fun hashCode(): jet.Int public final fun inc(): jet.Short public final fun minus(): jet.Short public final fun minus(/*0*/ other: jet.Byte): jet.Int @@ -972,16 +975,6 @@ public final class jet.Short : jet.Number, jet.Comparable { public final fun times(/*0*/ other: jet.Int): jet.Int public final fun times(/*0*/ other: jet.Long): jet.Long public final fun times(/*0*/ other: jet.Short): jet.Int - public final fun upto(/*0*/ other: jet.Byte): jet.ShortRange - public final fun upto(/*0*/ other: jet.Char): jet.ShortRange - public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange - public final fun upto(/*0*/ other: jet.Float): jet.FloatRange - public final fun upto(/*0*/ other: jet.Int): jet.IntRange - public final fun upto(/*0*/ other: jet.Long): jet.LongRange - public final fun upto(/*0*/ other: jet.Short): jet.ShortRange - public open override /*1*/ fun compareTo(/*0*/ other: jet.Short): jet.Int - public open override /*1*/ fun equals(/*0*/ other: jet.Any?): jet.Boolean - public open override /*1*/ fun hashCode(): jet.Int public open override /*1*/ fun toByte(): jet.Byte public open override /*1*/ fun toChar(): jet.Char public open override /*1*/ fun toDouble(): jet.Double @@ -989,44 +982,51 @@ public final class jet.Short : jet.Number, jet.Comparable { public open override /*1*/ fun toInt(): jet.Int public open override /*1*/ fun toLong(): jet.Long public open override /*1*/ fun toShort(): jet.Short + public final fun upto(/*0*/ other: jet.Byte): jet.ShortRange + public final fun upto(/*0*/ other: jet.Char): jet.ShortRange + public final fun upto(/*0*/ other: jet.Double): jet.DoubleRange + public final fun upto(/*0*/ other: jet.Float): jet.FloatRange + public final fun upto(/*0*/ other: jet.Int): jet.IntRange + public final fun upto(/*0*/ other: jet.Long): jet.LongRange + public final fun upto(/*0*/ other: jet.Short): jet.ShortRange } public final class jet.ShortArray : jet.Any { public final /*constructor*/ fun (/*0*/ size: jet.Int): jet.ShortArray public final fun get(/*0*/ index: jet.Int): jet.Short + public final val indices: jet.IntRange public final fun iterator(): jet.ShortIterator public final fun set(/*0*/ index: jet.Int, /*1*/ value: jet.Short): jet.Tuple0 - public final val indices: jet.IntRange public final val size: jet.Int } public abstract trait jet.ShortIterable : jet.Iterable { public abstract override /*1*/ fun iterator(): jet.ShortIterator } public abstract class jet.ShortIterator : jet.Iterator { - public abstract fun nextShort(): jet.Short - public abstract override /*1*/ val hasNext: jet.Boolean public final /*constructor*/ fun (): jet.ShortIterator + public abstract override /*1*/ val hasNext: jet.Boolean public open override /*1*/ fun next(): jet.Short + public abstract fun nextShort(): jet.Short } public final class jet.ShortRange : jet.Range, jet.ShortIterable { public final /*constructor*/ fun (/*0*/ start: jet.Short, /*1*/ size: jet.Int): jet.ShortRange - public final fun minus(): jet.ShortRange - public final fun step(/*0*/ step: jet.Int): jet.ShortIterator + public open override /*1*/ fun contains(/*0*/ elem: jet.Short): jet.Boolean public final val end: jet.Short public final val isReversed: jet.Boolean + public open override /*1*/ fun iterator(): jet.ShortIterator public final val iteratorStart: jet.Short + public final fun minus(): jet.ShortRange public final val size: jet.Int public final val start: jet.Short - public open override /*1*/ fun contains(/*0*/ elem: jet.Short): jet.Boolean - public open override /*1*/ fun iterator(): jet.ShortIterator + public final fun step(/*0*/ step: jet.Int): jet.ShortIterator } public final class jet.String : jet.Comparable, jet.CharSequence { public final /*constructor*/ fun (): jet.String - public final fun equals(/*0*/ other: jet.Any?): jet.Boolean - public final fun plus(/*0*/ other: jet.Any?): jet.String public open override /*1*/ fun compareTo(/*0*/ that: jet.String): jet.Int + public final fun equals(/*0*/ other: jet.Any?): jet.Boolean public open override /*1*/ fun get(/*0*/ index: jet.Int): jet.Char - public open override /*1*/ fun toString(): jet.String public open override /*1*/ val length: jet.Int + public final fun plus(/*0*/ other: jet.Any?): jet.String + public open override /*1*/ fun toString(): jet.String } public open class jet.Throwable : jet.Any { public final /*constructor*/ fun (/*0*/ message: jet.String? = ?, /*1*/ cause: jet.Throwable? = ?): jet.Throwable @@ -1365,13 +1365,13 @@ public final annotation class jet.volatile : jet.Any { public final fun arrayOfNulls(/*0*/ size: jet.Int): jet.Array public final fun jet.Any?.equals(/*0*/ other: jet.Any?): jet.Boolean public final fun jet.Any?.identityEquals(/*0*/ other: jet.Any?): jet.Boolean -public final fun jet.Iterator.iterator(): jet.Iterator public final fun jet.BooleanIterator.iterator(): jet.BooleanIterator public final fun jet.ByteIterator.iterator(): jet.ByteIterator public final fun jet.CharIterator.iterator(): jet.CharIterator public final fun jet.DoubleIterator.iterator(): jet.DoubleIterator public final fun jet.FloatIterator.iterator(): jet.FloatIterator public final fun jet.IntIterator.iterator(): jet.IntIterator +public final fun jet.Iterator.iterator(): jet.Iterator public final fun jet.LongIterator.iterator(): jet.LongIterator public final fun jet.ShortIterator.iterator(): jet.ShortIterator public final fun jet.String?.plus(/*0*/ other: jet.Any?): jet.String diff --git a/compiler/testData/lazyResolve/namespaceComparator/simpleClass.txt b/compiler/testData/lazyResolve/namespaceComparator/simpleClass.txt index c31f30caf3d..2684ef13b31 100644 --- a/compiler/testData/lazyResolve/namespaceComparator/simpleClass.txt +++ b/compiler/testData/lazyResolve/namespaceComparator/simpleClass.txt @@ -4,19 +4,19 @@ namespace namespace p internal final class p.C : jet.Any { - internal final fun f(): jet.Tuple0 public final /*constructor*/ fun (): p.C + internal final fun f(): jet.Tuple0 } internal open class p.G : jet.Any { + public final /*constructor*/ fun (): p.G internal final fun a(): jet.Tuple0 internal open fun f(): T - public final /*constructor*/ fun (): p.G } internal final class p.G2 : p.G { - internal final fun g(): E + public final /*constructor*/ fun (): p.G2 internal final override /*1*/ fun a(): jet.Tuple0 internal open override /*1*/ fun f(): E - public final /*constructor*/ fun (): p.G2 + internal final fun g(): E } internal final fun foo(): jet.Tuple0 internal final fun foo(/*0*/ a: p.C): jet.Tuple0 diff --git a/compiler/testData/readJavaBinaryClass/ClassWithTypePExtendsIterableP.txt b/compiler/testData/readJavaBinaryClass/ClassWithTypePExtendsIterableP.txt index 1aee85160f5..62385ad35ee 100644 --- a/compiler/testData/readJavaBinaryClass/ClassWithTypePExtendsIterableP.txt +++ b/compiler/testData/readJavaBinaryClass/ClassWithTypePExtendsIterableP.txt @@ -1,6 +1,6 @@ namespace test public abstract class test.ClassWithTypePExtendsIterableP : java.lang.Iterable

{ - public abstract override /*1*/ fun iterator(): java.util.Iterator

? public final /*constructor*/ fun (): test.ClassWithTypePExtendsIterableP

+ public abstract override /*1*/ fun iterator(): java.util.Iterator

? } diff --git a/compiler/testData/readKotlinBinaryClass/class/ClassInnerClass.txt b/compiler/testData/readKotlinBinaryClass/class/ClassInnerClass.txt index 8fe38d89d34..933c83524c8 100644 --- a/compiler/testData/readKotlinBinaryClass/class/ClassInnerClass.txt +++ b/compiler/testData/readKotlinBinaryClass/class/ClassInnerClass.txt @@ -1,8 +1,8 @@ namespace test internal final class test.Outer : jet.Any { + public final /*constructor*/ fun (): test.Outer internal final class test.Outer.Inner : jet.Any { public final /*constructor*/ fun (): test.Outer.Inner } - public final /*constructor*/ fun (): test.Outer } diff --git a/compiler/testData/readKotlinBinaryClass/class/InnerClass.txt b/compiler/testData/readKotlinBinaryClass/class/InnerClass.txt index 8fe38d89d34..933c83524c8 100644 --- a/compiler/testData/readKotlinBinaryClass/class/InnerClass.txt +++ b/compiler/testData/readKotlinBinaryClass/class/InnerClass.txt @@ -1,8 +1,8 @@ namespace test internal final class test.Outer : jet.Any { + public final /*constructor*/ fun (): test.Outer internal final class test.Outer.Inner : jet.Any { public final /*constructor*/ fun (): test.Outer.Inner } - public final /*constructor*/ fun (): test.Outer } diff --git a/compiler/testData/readKotlinBinaryClass/class/InnerClassExtendInnerClass.txt b/compiler/testData/readKotlinBinaryClass/class/InnerClassExtendInnerClass.txt index 1bf5f55541e..2fa83e293a5 100644 --- a/compiler/testData/readKotlinBinaryClass/class/InnerClassExtendInnerClass.txt +++ b/compiler/testData/readKotlinBinaryClass/class/InnerClassExtendInnerClass.txt @@ -1,11 +1,11 @@ namespace test internal final class test.Outer : jet.Any { - internal final class test.Outer.Inner2 : test.Outer.Inner1 { - public final /*constructor*/ fun (): test.Outer.Inner2 - } + public final /*constructor*/ fun (): test.Outer internal open class test.Outer.Inner1 : jet.Any { public final /*constructor*/ fun (): test.Outer.Inner1 } - public final /*constructor*/ fun (): test.Outer + internal final class test.Outer.Inner2 : test.Outer.Inner1 { + public final /*constructor*/ fun (): test.Outer.Inner2 + } } diff --git a/compiler/testData/readKotlinBinaryClass/classFun/ClassInParamUsedInFun.txt b/compiler/testData/readKotlinBinaryClass/classFun/ClassInParamUsedInFun.txt index 9f40b75bee0..8ea2b5a44c5 100644 --- a/compiler/testData/readKotlinBinaryClass/classFun/ClassInParamUsedInFun.txt +++ b/compiler/testData/readKotlinBinaryClass/classFun/ClassInParamUsedInFun.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassParamUsedInFun : jet.Any { - internal final fun f(/*0*/ t: T): jet.Int public final /*constructor*/ fun (): test.ClassParamUsedInFun + internal final fun f(/*0*/ t: T): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/classFun/ClassParamUsedInFun.txt b/compiler/testData/readKotlinBinaryClass/classFun/ClassParamUsedInFun.txt index 1e28d41ce42..eb311bb69f3 100644 --- a/compiler/testData/readKotlinBinaryClass/classFun/ClassParamUsedInFun.txt +++ b/compiler/testData/readKotlinBinaryClass/classFun/ClassParamUsedInFun.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassParamUsedInFun : jet.Any { - internal final fun f(/*0*/ t: T): jet.Int public final /*constructor*/ fun (): test.ClassParamUsedInFun + internal final fun f(/*0*/ t: T): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/classFun/FunDelegationToTraitImpl.txt b/compiler/testData/readKotlinBinaryClass/classFun/FunDelegationToTraitImpl.txt index 9c6ec32a89a..c7ec2c87129 100644 --- a/compiler/testData/readKotlinBinaryClass/classFun/FunDelegationToTraitImpl.txt +++ b/compiler/testData/readKotlinBinaryClass/classFun/FunDelegationToTraitImpl.txt @@ -4,6 +4,6 @@ internal abstract trait test.A : jet.Any { internal open fun f(): jet.String } internal final class test.B : test.A { - internal open override /*1*/ fun f(): jet.String public final /*constructor*/ fun (): test.B + internal open override /*1*/ fun f(): jet.String } diff --git a/compiler/testData/readKotlinBinaryClass/classFun/FunInParamSuper.txt b/compiler/testData/readKotlinBinaryClass/classFun/FunInParamSuper.txt index 91c03c5a6a2..e75d15dce8a 100644 --- a/compiler/testData/readKotlinBinaryClass/classFun/FunInParamSuper.txt +++ b/compiler/testData/readKotlinBinaryClass/classFun/FunInParamSuper.txt @@ -1,10 +1,10 @@ namespace test internal open class test.Base : jet.Any { - internal final fun foo(): T public final /*constructor*/ fun (): test.Base + internal final fun foo(): T } internal final class test.Inh : test.Base { - internal final override /*1*/ fun foo(): jet.String public final /*constructor*/ fun (): test.Inh + internal final override /*1*/ fun foo(): jet.String } diff --git a/compiler/testData/readKotlinBinaryClass/constructor/ConstructorCollectionParameter.txt b/compiler/testData/readKotlinBinaryClass/constructor/ConstructorCollectionParameter.txt index 830aadf3868..5c6b7250bc5 100644 --- a/compiler/testData/readKotlinBinaryClass/constructor/ConstructorCollectionParameter.txt +++ b/compiler/testData/readKotlinBinaryClass/constructor/ConstructorCollectionParameter.txt @@ -1,6 +1,6 @@ namespace test internal final class test.TestingKotlinCollections : jet.Any { - internal final val arguments: java.util.Collection public final /*constructor*/ fun (/*0*/ arguments: java.util.Collection): test.TestingKotlinCollections + internal final val arguments: java.util.Collection } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFun.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFun.txt index a705f7b60d1..40873f561f9 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFun.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFun.txt @@ -1,6 +1,6 @@ namespace test internal final class test.River : jet.Any { - internal final fun song(): jet.Int public final /*constructor*/ fun (): test.River + internal final fun song(): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFoo.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFoo.txt index 3090d29cfdf..1fde65f22cb 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFoo.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFoo.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassFunGetFoo : jet.Any { - internal final fun getFoo(): jet.Int public final /*constructor*/ fun (): test.ClassFunGetFoo + internal final fun getFoo(): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFooSetFoo.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFooSetFoo.txt index 9dadff1007e..c2db7c96aff 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFooSetFoo.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunGetFooSetFoo.txt @@ -1,7 +1,7 @@ namespace test internal final class test.ClassFunGetFoo : jet.Any { + public final /*constructor*/ fun (): test.ClassFunGetFoo internal final fun getFoo(): jet.Int internal final fun setFoo(/*0*/ p: jet.Int): jet.Tuple0 - public final /*constructor*/ fun (): test.ClassFunGetFoo } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunSetFoo.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunSetFoo.txt index 54da52d550c..520c122b7d4 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunSetFoo.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ClassFunSetFoo.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassFunGetFoo : jet.Any { - internal final fun set(/*0*/ p: jet.Int): jet.Tuple0 public final /*constructor*/ fun (): test.ClassFunGetFoo + internal final fun set(/*0*/ p: jet.Int): jet.Tuple0 } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ExtFunInClass.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ExtFunInClass.txt index 3b0deec0476..b8db940405e 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ExtFunInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ExtFunInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtFunInClass : jet.Any { - internal final fun jet.Int.shuffle(): jet.Int public final /*constructor*/ fun (): test.ExtFunInClass + internal final fun jet.Int.shuffle(): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierAbstract.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierAbstract.txt index 427439aa9f4..101c5fce3b5 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierAbstract.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierAbstract.txt @@ -1,6 +1,6 @@ namespace test internal abstract class test.ModifierAbstract : jet.Any { - internal abstract fun abs(): jet.Int public final /*constructor*/ fun (): test.ModifierAbstract + internal abstract fun abs(): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierOpen.txt b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierOpen.txt index fdd2deac8e7..80db065fa5d 100644 --- a/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierOpen.txt +++ b/compiler/testData/readKotlinBinaryClass/fun/nonGeneric/ModifierOpen.txt @@ -1,6 +1,6 @@ namespace test internal open class test.ModifierOpen : jet.Any { - internal open fun abs(): jet.Int public final /*constructor*/ fun (): test.ModifierOpen + internal open fun abs(): jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ClassVal.txt b/compiler/testData/readKotlinBinaryClass/prop/ClassVal.txt index 7dde91c6866..70a827e6c56 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ClassVal.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ClassVal.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassVal : jet.Any { - internal final val aa: jet.Int public final /*constructor*/ fun (): test.ClassVal + internal final val aa: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ClassValAbstract.txt b/compiler/testData/readKotlinBinaryClass/prop/ClassValAbstract.txt index 72fbf945f48..4193d97860c 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ClassValAbstract.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ClassValAbstract.txt @@ -1,6 +1,6 @@ namespace test internal abstract class test.ClassValAbstract : jet.Any { - internal abstract val a: jet.Int public final /*constructor*/ fun (): test.ClassValAbstract + internal abstract val a: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ClassVar.txt b/compiler/testData/readKotlinBinaryClass/prop/ClassVar.txt index f7d01243bd0..da2c0dde6f3 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ClassVar.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ClassVar.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ClassVar : jet.Any { - internal final var aa: jet.Int public final /*constructor*/ fun (): test.ClassVar + internal final var aa: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtValInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtValInClass.txt index db78512b8d5..4d88f13f6a2 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtValInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtValInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtPropInClass : jet.Any { - internal final val jet.Int.itIs: jet.Int public final /*constructor*/ fun (): test.ExtPropInClass + internal final val jet.Int.itIs: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntListQOfIntInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntListQOfIntInClass.txt index 8d516eba1d9..b4e6d879fa6 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntListQOfIntInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntListQOfIntInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValInClass : jet.Any { - internal final val jet.Int.asas: java.util.List? public final /*constructor*/ fun (): test.ExtValInClass + internal final val jet.Int.asas: java.util.List? } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTInClass.txt index 24dbe63e999..b164e533dba 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValInClass : jet.Any { - internal final val jet.Int.asas: T public final /*constructor*/ fun (): test.ExtValInClass + internal final val jet.Int.asas: T } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTQInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTQInClass.txt index ef79cfc5a40..473a66bc818 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTQInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtValIntTQInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValInClass : jet.Any { - internal final val jet.Int.asas: P? public final /*constructor*/ fun (): test.ExtValInClass

+ internal final val jet.Int.asas: P? } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtValTIntInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtValTIntInClass.txt index 3cc699a0776..2fe15a135de 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtValTIntInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtValTIntInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValPIntInClass : jet.Any { - internal final val P.asas: jet.Int public final /*constructor*/ fun (): test.ExtValPIntInClass

+ internal final val P.asas: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarInClass.txt index d3b2318ceea..6d960120ed6 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtPropInClass : jet.Any { - internal final var jet.Int.itIs: jet.Int public final /*constructor*/ fun (): test.ExtPropInClass + internal final var jet.Int.itIs: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTInClass.txt index 052a4d01cbb..944ab74069d 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValInClass : jet.Any { - internal final var jet.Int.asas: P public final /*constructor*/ fun (): test.ExtValInClass

+ internal final var jet.Int.asas: P } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTQInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTQInClass.txt index 122ba3c4ef7..ae0a11ceffa 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTQInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTQInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValInClass : jet.Any { - internal final var jet.Int.asas: P? public final /*constructor*/ fun (): test.ExtValInClass

+ internal final var jet.Int.asas: P? } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarTIntInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarTIntInClass.txt index 4a14bb0ed03..45eed0b0a51 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarTIntInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarTIntInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValPIntInClass : jet.Any { - internal final var P.asas: jet.Int public final /*constructor*/ fun (): test.ExtValPIntInClass

+ internal final var P.asas: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarTQIntInClass.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarTQIntInClass.txt index 93d9f084a13..904fc18a8c5 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarTQIntInClass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarTQIntInClass.txt @@ -1,6 +1,6 @@ namespace test internal final class test.ExtValPIntInClass : jet.Any { - internal final var P?.asas: jet.Int public final /*constructor*/ fun (): test.ExtValPIntInClass

+ internal final var P?.asas: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/ExtVarl.txt b/compiler/testData/readKotlinBinaryClass/prop/ExtVarl.txt index 74a6b3ba32c..2507760b5de 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/ExtVarl.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/ExtVarl.txt @@ -1,4 +1,4 @@ namespace test -internal final val jet.String.junk: jet.Int internal final var jet.Int.junk: jet.Short +internal final val jet.String.junk: jet.Int diff --git a/compiler/testData/readKotlinBinaryClass/prop/OverrideClassVal.txt b/compiler/testData/readKotlinBinaryClass/prop/OverrideClassVal.txt index 0446aa5c427..cf611c0add8 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/OverrideClassVal.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/OverrideClassVal.txt @@ -1,10 +1,10 @@ namespace test internal open class test.BaseClass : jet.Any { - internal open val shape: jet.String public final /*constructor*/ fun (): test.BaseClass + internal open val shape: jet.String } internal open class test.Subclass : test.BaseClass { - internal open override /*1*/ val shape: jet.String public final /*constructor*/ fun (): test.Subclass + internal open override /*1*/ val shape: jet.String } diff --git a/compiler/testData/readKotlinBinaryClass/prop/OverrideTraitVal.txt b/compiler/testData/readKotlinBinaryClass/prop/OverrideTraitVal.txt index 20c9dad1560..c495eab3581 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/OverrideTraitVal.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/OverrideTraitVal.txt @@ -1,8 +1,8 @@ namespace test internal open class test.Subclass : test.Trait { - internal open override /*1*/ val shape: jet.String public final /*constructor*/ fun (): test.Subclass + internal open override /*1*/ val shape: jet.String } internal abstract trait test.Trait : jet.Any { internal abstract val shape: jet.String diff --git a/compiler/testData/readKotlinBinaryClass/prop/PropFromSuperclass.txt b/compiler/testData/readKotlinBinaryClass/prop/PropFromSuperclass.txt index 1672a6cfe16..7c2cde311bb 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/PropFromSuperclass.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/PropFromSuperclass.txt @@ -1,10 +1,10 @@ namespace test internal open class test.BaseClass : jet.Any { - internal final val exactly: jet.Int public final /*constructor*/ fun (): test.BaseClass + internal final val exactly: jet.Int } internal final class test.Subclass : test.BaseClass { - internal final override /*1*/ val exactly: jet.Int public final /*constructor*/ fun (): test.Subclass + internal final override /*1*/ val exactly: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/prop/VarDelegationToTraitImpl.txt b/compiler/testData/readKotlinBinaryClass/prop/VarDelegationToTraitImpl.txt index 407b1bc696f..9c32cef343b 100644 --- a/compiler/testData/readKotlinBinaryClass/prop/VarDelegationToTraitImpl.txt +++ b/compiler/testData/readKotlinBinaryClass/prop/VarDelegationToTraitImpl.txt @@ -4,6 +4,6 @@ internal abstract trait test.A : jet.Any { internal open var v: jet.String } internal final class test.B : test.A { - internal open override /*1*/ var v: jet.String public final /*constructor*/ fun (): test.B + internal open override /*1*/ var v: jet.String } diff --git a/compiler/testData/readKotlinBinaryClass/visibility/InternalAbstractTraitMembersOverridden.txt b/compiler/testData/readKotlinBinaryClass/visibility/InternalAbstractTraitMembersOverridden.txt index c263e4a9c7e..3c5f2a857ef 100644 --- a/compiler/testData/readKotlinBinaryClass/visibility/InternalAbstractTraitMembersOverridden.txt +++ b/compiler/testData/readKotlinBinaryClass/visibility/InternalAbstractTraitMembersOverridden.txt @@ -2,12 +2,12 @@ namespace test internal abstract trait test.A : jet.Any { internal abstract fun f(): jet.Int - internal abstract val v: jet.Int public abstract var p: jet.Int + internal abstract val v: jet.Int } internal final class test.B : test.A { - internal open override /*1*/ fun f(): jet.Int - internal open override /*1*/ val v: jet.Int public final /*constructor*/ fun (): test.B + internal open override /*1*/ fun f(): jet.Int public open override /*1*/ var p: jet.Int + internal open override /*1*/ val v: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembers.txt b/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembers.txt index c8f3e6fb080..59e7e7662ad 100644 --- a/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembers.txt +++ b/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembers.txt @@ -2,6 +2,6 @@ namespace test internal abstract trait test.A : jet.Any { internal abstract fun f(): jet.Int - internal abstract val v: jet.Int public abstract var p: jet.Int internal set + internal abstract val v: jet.Int } diff --git a/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembersInherited.txt b/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembersInherited.txt index e31fe22cfa6..2e0f228b5a2 100644 --- a/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembersInherited.txt +++ b/compiler/testData/readKotlinBinaryClass/visibility/InternalTraitMembersInherited.txt @@ -2,12 +2,12 @@ namespace test internal abstract trait test.A : jet.Any { internal open fun f(): jet.Int - internal open val v: jet.Int public open var p: jet.Int internal set + internal open val v: jet.Int } internal final class test.B : test.A { - internal open override /*1*/ fun f(): jet.Int - internal open override /*1*/ val v: jet.Int public final /*constructor*/ fun (): test.B + internal open override /*1*/ fun f(): jet.Int public open override /*1*/ var p: jet.Int internal set + internal open override /*1*/ val v: jet.Int }