Merged LoadCompiledKotlin test int LoadJavaTest.

This commit is contained in:
Evgeny Gerashchenko
2013-12-06 16:48:03 +04:00
parent 62f44f7ed0
commit b7cfd676bf
491 changed files with 2032 additions and 2103 deletions
@@ -0,0 +1,5 @@
package test
class ClassVal() {
val aa = 1
}
@@ -0,0 +1,7 @@
package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final val aa: jet.Int
internal final fun <get-aa>(): jet.Int
}
@@ -0,0 +1,5 @@
package test
abstract class ClassValAbstract {
abstract val a: Int
}
@@ -0,0 +1,7 @@
package test
internal abstract class ClassValAbstract {
/*primary*/ public constructor ClassValAbstract()
internal abstract val a: jet.Int
internal abstract fun <get-a>(): jet.Int
}
@@ -0,0 +1,5 @@
package test
class ClassVar() {
var aa = 1
}
@@ -0,0 +1,8 @@
package test
internal final class ClassVar {
/*primary*/ public constructor ClassVar()
internal final var aa: jet.Int
internal final fun <get-aa>(): jet.Int
internal final fun <set-aa>(/*0*/ <set-?>: jet.Int): jet.Unit
}
@@ -0,0 +1,4 @@
package test
val Collection<*>.anotherSize : Int
get() = size()
@@ -0,0 +1,4 @@
package test
internal val jet.Collection<jet.Any?>.anotherSize: jet.Int
internal fun jet.Collection<jet.Any?>.<get-anotherSize>(): jet.Int
@@ -0,0 +1,4 @@
package test
val <P> P.anotherJavaClass: java.lang.Class<P>
get() = throw Exception()
@@ -0,0 +1,4 @@
package test
internal val </*0*/ P> P.anotherJavaClass: java.lang.Class<P>
internal fun P.<get-anotherJavaClass>(): java.lang.Class<P>
@@ -0,0 +1,6 @@
package test
class ExtPropInClass {
val Int.itIs: Int
get() = this
}
@@ -0,0 +1,7 @@
package test
internal final class ExtPropInClass {
/*primary*/ public constructor ExtPropInClass()
internal final val jet.Int.itIs: jet.Int
internal final fun jet.Int.<get-itIs>(): jet.Int
}
@@ -0,0 +1,4 @@
package test
val Int.itIs: Int
get() = this
@@ -0,0 +1,4 @@
package test
internal val jet.Int.itIs: jet.Int
internal fun jet.Int.<get-itIs>(): jet.Int
@@ -0,0 +1,6 @@
package test
import java.lang.CharSequence
val Int.ggg: CharSequence
get() = throw Exception()
@@ -0,0 +1,4 @@
package test
internal val jet.Int.ggg: java.lang.CharSequence
internal fun jet.Int.<get-ggg>(): java.lang.CharSequence
@@ -0,0 +1,6 @@
package test
import java.lang.CharSequence
val Int.ggg: CharSequence?
get() = throw Exception()
@@ -0,0 +1,4 @@
package test
internal val jet.Int.ggg: java.lang.CharSequence?
internal fun jet.Int.<get-ggg>(): java.lang.CharSequence?
@@ -0,0 +1,6 @@
package test
class ExtValInClass {
val Int.asas: java.util.List<Int>?
get() = throw Exception()
}
@@ -0,0 +1,7 @@
package test
internal final class ExtValInClass {
/*primary*/ public constructor ExtValInClass()
internal final val jet.Int.asas: java.util.List<jet.Int>?
internal final fun jet.Int.<get-asas>(): java.util.List<jet.Int>?
}
@@ -0,0 +1,6 @@
package test
class ExtValInClass<T> {
val Int.asas: T
get() = throw Exception()
}
@@ -0,0 +1,7 @@
package test
internal final class ExtValInClass</*0*/ T> {
/*primary*/ public constructor ExtValInClass</*0*/ T>()
internal final val jet.Int.asas: T
internal final fun jet.Int.<get-asas>(): T
}
@@ -0,0 +1,6 @@
package test
class ExtValInClass<P> {
val Int.asas: P?
get() = throw Exception()
}
@@ -0,0 +1,7 @@
package test
internal final class ExtValInClass</*0*/ P> {
/*primary*/ public constructor ExtValInClass</*0*/ P>()
internal final val jet.Int.asas: P?
internal final fun jet.Int.<get-asas>(): P?
}
@@ -0,0 +1,6 @@
package test
class ExtValPIntInClass<P> {
val P.asas: Int
get() = throw Exception()
}
@@ -0,0 +1,7 @@
package test
internal final class ExtValPIntInClass</*0*/ P> {
/*primary*/ public constructor ExtValPIntInClass</*0*/ P>()
internal final val P.asas: jet.Int
internal final fun P.<get-asas>(): jet.Int
}
@@ -0,0 +1,5 @@
package test
var <P> P.anotherJavaClass: java.lang.Class<P>
get() = throw Exception()
set(p: java.lang.Class<P>) = throw Exception()
@@ -0,0 +1,5 @@
package test
internal var </*0*/ P> P.anotherJavaClass: java.lang.Class<P>
internal fun P.<get-anotherJavaClass>(): java.lang.Class<P>
internal fun P.<set-anotherJavaClass>(/*0*/ p: java.lang.Class<P>): jet.Unit
@@ -0,0 +1,7 @@
package test
class ExtPropInClass {
var Int.itIs: Int
get() = throw Exception()
set(p: Int) = throw Exception()
}
@@ -0,0 +1,8 @@
package test
internal final class ExtPropInClass {
/*primary*/ public constructor ExtPropInClass()
internal final var jet.Int.itIs: jet.Int
internal final fun jet.Int.<get-itIs>(): jet.Int
internal final fun jet.Int.<set-itIs>(/*0*/ p: jet.Int): jet.Unit
}
@@ -0,0 +1,5 @@
package test
var Int.ggg: Int
get() = throw Exception()
set(p) = throw Exception()
@@ -0,0 +1,5 @@
package test
internal var jet.Int.ggg: jet.Int
internal fun jet.Int.<get-ggg>(): jet.Int
internal fun jet.Int.<set-ggg>(/*0*/ p: jet.Int): jet.Unit
@@ -0,0 +1,7 @@
package test
class ExtValInClass<P> {
var Int.asas: P
get() = throw Exception()
set(p: P) = throw Exception()
}
@@ -0,0 +1,8 @@
package test
internal final class ExtValInClass</*0*/ P> {
/*primary*/ public constructor ExtValInClass</*0*/ P>()
internal final var jet.Int.asas: P
internal final fun jet.Int.<get-asas>(): P
internal final fun jet.Int.<set-asas>(/*0*/ p: P): jet.Unit
}
@@ -0,0 +1,7 @@
package test
class ExtValInClass<P> {
var Int.asas: P?
get() = throw Exception()
set(p: P?) = throw Exception()
}
@@ -0,0 +1,8 @@
package test
internal final class ExtValInClass</*0*/ P> {
/*primary*/ public constructor ExtValInClass</*0*/ P>()
internal final var jet.Int.asas: P?
internal final fun jet.Int.<get-asas>(): P?
internal final fun jet.Int.<set-asas>(/*0*/ p: P?): jet.Unit
}
@@ -0,0 +1,5 @@
package test
var <P, Q> Map<P, Q>.asas: Int
get() = throw Exception()
set(i: Int) = throw Exception()
@@ -0,0 +1,5 @@
package test
internal var </*0*/ P, /*1*/ Q> jet.Map<P, Q>.asas: jet.Int
internal fun jet.Map<P, Q>.<get-asas>(): jet.Int
internal fun jet.Map<P, Q>.<set-asas>(/*0*/ i: jet.Int): jet.Unit
@@ -0,0 +1,7 @@
package test
class ExtValPIntInClass<P> {
var P.asas: Int
get() = throw Exception()
set(p: Int) = throw Exception()
}
@@ -0,0 +1,8 @@
package test
internal final class ExtValPIntInClass</*0*/ P> {
/*primary*/ public constructor ExtValPIntInClass</*0*/ P>()
internal final var P.asas: jet.Int
internal final fun P.<get-asas>(): jet.Int
internal final fun P.<set-asas>(/*0*/ p: jet.Int): jet.Unit
}
@@ -0,0 +1,7 @@
package test
class ExtValPIntInClass<P> {
var P?.asas: Int
get() = throw Exception()
set(p: Int) = throw Exception()
}
@@ -0,0 +1,8 @@
package test
internal final class ExtValPIntInClass</*0*/ P> {
/*primary*/ public constructor ExtValPIntInClass</*0*/ P>()
internal final var P?.asas: jet.Int
internal final fun P?.<get-asas>(): jet.Int
internal final fun P?.<set-asas>(/*0*/ p: jet.Int): jet.Unit
}
@@ -0,0 +1,8 @@
package test
var Int.junk: Short
get() = throw Exception()
set(p: Short) = throw Exception()
val String.junk: Int
get() = throw Exception()
@@ -0,0 +1,7 @@
package test
internal var jet.Int.junk: jet.Short
internal fun jet.Int.<get-junk>(): jet.Short
internal fun jet.Int.<set-junk>(/*0*/ p: jet.Short): jet.Unit
internal val jet.String.junk: jet.Int
internal fun jet.String.<get-junk>(): jet.Int
@@ -0,0 +1,3 @@
package test
val nsVal = 1
@@ -0,0 +1,4 @@
package test
internal val nsVal: jet.Int
internal fun <get-nsVal>(): jet.Int
@@ -0,0 +1,3 @@
package test
var nsVal = 1
@@ -0,0 +1,5 @@
package test
internal var nsVal: jet.Int
internal fun <get-nsVal>(): jet.Int
internal fun <set-nsVal>(/*0*/ <set-?>: jet.Int): jet.Unit
@@ -0,0 +1,9 @@
package test
open class BaseClass() {
open val shape = "square"
}
open class Subclass() : BaseClass() {
override open val shape = "circle"
}
@@ -0,0 +1,13 @@
package test
internal open class BaseClass {
/*primary*/ public constructor BaseClass()
internal open val shape: jet.String
internal open fun <get-shape>(): jet.String
}
internal open class Subclass : test.BaseClass {
/*primary*/ public constructor Subclass()
internal open override /*1*/ val shape: jet.String
internal open override /*1*/ fun <get-shape>(): jet.String
}
@@ -0,0 +1,9 @@
package test
trait Trait {
val shape: String
}
open class Subclass() : Trait {
override open val shape = "circle"
}
@@ -0,0 +1,12 @@
package test
internal open class Subclass : test.Trait {
/*primary*/ public constructor Subclass()
internal open override /*1*/ val shape: jet.String
internal open override /*1*/ fun <get-shape>(): jet.String
}
internal trait Trait {
internal abstract val shape: jet.String
internal abstract fun <get-shape>(): jet.String
}
@@ -0,0 +1,8 @@
package test
open class BaseClass() {
val exactly = 17
}
class Subclass() : BaseClass() {
}
@@ -0,0 +1,13 @@
package test
internal open class BaseClass {
/*primary*/ public constructor BaseClass()
internal final val exactly: jet.Int
internal final fun <get-exactly>(): jet.Int
}
internal final class Subclass : test.BaseClass {
/*primary*/ public constructor Subclass()
internal final override /*1*/ /*fake_override*/ val exactly: jet.Int
internal final override /*1*/ /*fake_override*/ fun <get-exactly>(): jet.Int
}
@@ -0,0 +1,11 @@
// KT-2228
package test
trait A {
var v: String
get() = "test"
set(value) {
throw UnsupportedOperationException()
}
}
@@ -0,0 +1,7 @@
package test
internal trait A {
internal open var v: jet.String
internal open fun <get-v>(): jet.String
internal open fun <set-v>(/*0*/ value: jet.String): jet.Unit
}
@@ -0,0 +1,8 @@
// KT-2228
package test
trait A {
val v: String
get() = "test"
}
@@ -0,0 +1,6 @@
package test
internal trait A {
internal open val v: jet.String
internal open fun <get-v>(): jet.String
}
@@ -0,0 +1,13 @@
package test
// test composed from KT-2193
trait A {
open var v: String
get() = "test"
set(value) {
throw UnsupportedOperationException()
}
}
class B() : A
@@ -0,0 +1,14 @@
package test
internal trait A {
internal open var v: jet.String
internal open fun <get-v>(): jet.String
internal open fun <set-v>(/*0*/ value: jet.String): jet.Unit
}
internal final class B : test.A {
/*primary*/ public constructor B()
internal open override /*1*/ /*fake_override*/ var v: jet.String
internal open override /*1*/ /*fake_override*/ fun <get-v>(): jet.String
internal open override /*1*/ /*fake_override*/ fun <set-v>(/*0*/ value: jet.String): jet.Unit
}
@@ -0,0 +1,10 @@
package test
class A {
var a by MyProperty()
}
class MyProperty<T> {
fun get(t: T, p: PropertyMetadata): Int = 42
fun set(t: T, p: PropertyMetadata, i: Int) {}
}
@@ -0,0 +1,14 @@
package test
internal final class A {
/*primary*/ public constructor A()
internal final var a: jet.Int
internal final fun <get-a>(): jet.Int
internal final fun <set-a>(/*0*/ <set-?>: jet.Int): jet.Unit
}
internal final class MyProperty</*0*/ T> {
/*primary*/ public constructor MyProperty</*0*/ T>()
internal final fun get(/*0*/ t: T, /*1*/ p: jet.PropertyMetadata): jet.Int
internal final fun set(/*0*/ t: T, /*1*/ p: jet.PropertyMetadata, /*2*/ i: jet.Int): jet.Unit
}
@@ -0,0 +1,13 @@
package test
class ClassVal() {
val property1 = 1
internal val property2 = 1
private val property3 = Object()
protected val property4: String = ""
public val property5: Int = 1
}
@@ -0,0 +1,15 @@
package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final val property1: jet.Int
internal final fun <get-property1>(): jet.Int
internal final val property2: jet.Int
internal final fun <get-property2>(): jet.Int
private final val property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
protected final val property4: jet.String
protected final fun <get-property4>(): jet.String
public final val property5: jet.Int
public final fun <get-property5>(): jet.Int
}
@@ -0,0 +1,11 @@
package test
class ClassValParams(
val pr1: String,
internal val pr2 : Int,
private val pr3: Long,
protected val pr4: java.util.Date,
public val pr5 : Any,
pr6: Object) {
}
@@ -0,0 +1,15 @@
package test
internal final class ClassValParams {
/*primary*/ public constructor ClassValParams(/*0*/ pr1: jet.String, /*1*/ pr2: jet.Int, /*2*/ pr3: jet.Long, /*3*/ pr4: java.util.Date, /*4*/ pr5: jet.Any, /*5*/ pr6: java.lang.Object)
internal final val pr1: jet.String
internal final fun <get-pr1>(): jet.String
internal final val pr2: jet.Int
internal final fun <get-pr2>(): jet.Int
private final val pr3: jet.Long
private final fun <get-pr3>(): jet.Long
protected final val pr4: java.util.Date
protected final fun <get-pr4>(): java.util.Date
public final val pr5: jet.Any
public final fun <get-pr5>(): jet.Any
}
@@ -0,0 +1,20 @@
package test
class ClassVal() {
val property1 = 1
get
internal val property2 = 1
get
private val property3 = Object()
get
protected val property4: String = ""
get
public val property5: Int = 1
get
}
@@ -0,0 +1,15 @@
package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final val property1: jet.Int
internal final fun <get-property1>(): jet.Int
internal final val property2: jet.Int
internal final fun <get-property2>(): jet.Int
private final val property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
protected final val property4: jet.String
protected final fun <get-property4>(): jet.String
public final val property5: jet.Int
public final fun <get-property5>(): jet.Int
}
@@ -0,0 +1,15 @@
package test
class ClassVar() {
var property1 = 1
internal var property2 = 1
private var property3 = Object()
protected var property4: String = ""
public var property5: Int = 1
}
@@ -0,0 +1,20 @@
package test
internal final class ClassVar {
/*primary*/ public constructor ClassVar()
internal final var property1: jet.Int
internal final fun <get-property1>(): jet.Int
internal final fun <set-property1>(/*0*/ <set-?>: jet.Int): jet.Unit
internal final var property2: jet.Int
internal final fun <get-property2>(): jet.Int
internal final fun <set-property2>(/*0*/ <set-?>: jet.Int): jet.Unit
private final var property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
private final fun <set-property3>(/*0*/ <set-?>: java.lang.Object): jet.Unit
protected final var property4: jet.String
protected final fun <get-property4>(): jet.String
protected final fun <set-property4>(/*0*/ <set-?>: jet.String): jet.Unit
public final var property5: jet.Int
public final fun <get-property5>(): jet.Int
public final fun <set-property5>(/*0*/ <set-?>: jet.Int): jet.Unit
}
@@ -0,0 +1,18 @@
package test
open class ClassVarModality() {
open var property1 = 1
final internal var property2 = 1
open var property3 = 1
private set
final internal var property4 = 1
private set
}
abstract class ClassVarModalityAbstract {
abstract var property1 : java.util.Date
public set
}
@@ -0,0 +1,24 @@
package test
internal open class ClassVarModality {
/*primary*/ public constructor ClassVarModality()
internal open var property1: jet.Int
internal open fun <get-property1>(): jet.Int
internal open fun <set-property1>(/*0*/ <set-?>: jet.Int): jet.Unit
internal final var property2: jet.Int
internal final fun <get-property2>(): jet.Int
internal final fun <set-property2>(/*0*/ <set-?>: jet.Int): jet.Unit
internal open var property3: jet.Int
internal open fun <get-property3>(): jet.Int
private open fun <set-property3>(/*0*/ <set-?>: jet.Int): jet.Unit
internal final var property4: jet.Int
internal final fun <get-property4>(): jet.Int
private final fun <set-property4>(/*0*/ <set-?>: jet.Int): jet.Unit
}
internal abstract class ClassVarModalityAbstract {
/*primary*/ public constructor ClassVarModalityAbstract()
internal abstract var property1: java.util.Date
internal abstract fun <get-property1>(): java.util.Date
public abstract fun <set-property1>(/*0*/ <set-?>: java.util.Date): jet.Unit
}
@@ -0,0 +1,10 @@
package test
class ClassVarParams(
var pr1: String,
internal var pr2 : Int,
private var pr3: Long,
protected var pr4: java.util.Date,
public var pr5 : Any,
pr6: Object) {
}
@@ -0,0 +1,20 @@
package test
internal final class ClassVarParams {
/*primary*/ public constructor ClassVarParams(/*0*/ pr1: jet.String, /*1*/ pr2: jet.Int, /*2*/ pr3: jet.Long, /*3*/ pr4: java.util.Date, /*4*/ pr5: jet.Any, /*5*/ pr6: java.lang.Object)
internal final var pr1: jet.String
internal final fun <get-pr1>(): jet.String
internal final fun <set-pr1>(/*0*/ <set-?>: jet.String): jet.Unit
internal final var pr2: jet.Int
internal final fun <get-pr2>(): jet.Int
internal final fun <set-pr2>(/*0*/ <set-?>: jet.Int): jet.Unit
private final var pr3: jet.Long
private final fun <get-pr3>(): jet.Long
private final fun <set-pr3>(/*0*/ <set-?>: jet.Long): jet.Unit
protected final var pr4: java.util.Date
protected final fun <get-pr4>(): java.util.Date
protected final fun <set-pr4>(/*0*/ <set-?>: java.util.Date): jet.Unit
public final var pr5: jet.Any
public final fun <get-pr5>(): jet.Any
public final fun <set-pr5>(/*0*/ <set-?>: jet.Any): jet.Unit
}
@@ -0,0 +1,18 @@
package test
class ClassVal() {
var property1 = 1
get
internal var property2 = 1
get
private var property3 = Object()
get
protected var property4: String = ""
get
public var property5: Int = 1
get
}
@@ -0,0 +1,20 @@
package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final var property1: jet.Int
internal final fun <get-property1>(): jet.Int
internal final fun <set-property1>(/*0*/ <set-?>: jet.Int): jet.Unit
internal final var property2: jet.Int
internal final fun <get-property2>(): jet.Int
internal final fun <set-property2>(/*0*/ <set-?>: jet.Int): jet.Unit
private final var property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
private final fun <set-property3>(/*0*/ <set-?>: java.lang.Object): jet.Unit
protected final var property4: jet.String
protected final fun <get-property4>(): jet.String
protected final fun <set-property4>(/*0*/ <set-?>: jet.String): jet.Unit
public final var property5: jet.Int
public final fun <get-property5>(): jet.Int
public final fun <set-property5>(/*0*/ <set-?>: jet.Int): jet.Unit
}
@@ -0,0 +1,36 @@
package test
class ClassVal() {
var property1 = 1
set
var property2 = Object()
protected set
var property3 = Object()
private set
protected var property4: String = ""
set
protected var property5: String = ""
private set
protected var property6: String = ""
internal set
protected var property7: java.util.Date = java.util.Date()
public set
public var property8: Int = 1
set
public var property9: Int = 1
private set
public var property10: Int = 1
protected set
public var property11: Int = 1
internal set
}
@@ -0,0 +1,38 @@
package test
internal final class ClassVal {
/*primary*/ public constructor ClassVal()
internal final var property1: jet.Int
internal final fun <get-property1>(): jet.Int
internal final fun <set-property1>(/*0*/ <set-?>: jet.Int): jet.Unit
public final var property10: jet.Int
public final fun <get-property10>(): jet.Int
protected final fun <set-property10>(/*0*/ <set-?>: jet.Int): jet.Unit
public final var property11: jet.Int
public final fun <get-property11>(): jet.Int
internal final fun <set-property11>(/*0*/ <set-?>: jet.Int): jet.Unit
internal final var property2: java.lang.Object
internal final fun <get-property2>(): java.lang.Object
protected final fun <set-property2>(/*0*/ <set-?>: java.lang.Object): jet.Unit
internal final var property3: java.lang.Object
internal final fun <get-property3>(): java.lang.Object
private final fun <set-property3>(/*0*/ <set-?>: java.lang.Object): jet.Unit
protected final var property4: jet.String
protected final fun <get-property4>(): jet.String
protected final fun <set-property4>(/*0*/ <set-?>: jet.String): jet.Unit
protected final var property5: jet.String
protected final fun <get-property5>(): jet.String
private final fun <set-property5>(/*0*/ <set-?>: jet.String): jet.Unit
protected final var property6: jet.String
protected final fun <get-property6>(): jet.String
internal final fun <set-property6>(/*0*/ <set-?>: jet.String): jet.Unit
protected final var property7: java.util.Date
protected final fun <get-property7>(): java.util.Date
public final fun <set-property7>(/*0*/ <set-?>: java.util.Date): jet.Unit
public final var property8: jet.Int
public final fun <get-property8>(): jet.Int
public final fun <set-property8>(/*0*/ <set-?>: jet.Int): jet.Unit
public final var property9: jet.Int
public final fun <get-property9>(): jet.Int
private final fun <set-property9>(/*0*/ <set-?>: jet.Int): jet.Unit
}
@@ -0,0 +1,9 @@
package test
val Long.date1: Object = java.util.Date()
internal val Long.date12: Object = java.util.Date()
private val Long.date3: java.util.Date = java.util.Date()
public val Long.date4: java.util.Date = java.util.Date()
@@ -0,0 +1,10 @@
package test
internal val jet.Long.date1: java.lang.Object
internal fun jet.Long.<get-date1>(): java.lang.Object
internal val jet.Long.date12: java.lang.Object
internal fun jet.Long.<get-date12>(): java.lang.Object
private val jet.Long.date3: java.util.Date
private fun jet.Long.<get-date3>(): java.util.Date
public val jet.Long.date4: java.util.Date
public fun jet.Long.<get-date4>(): java.util.Date
@@ -0,0 +1,9 @@
package test
var Long.date1: Object = java.util.Date()
internal var Long.date12: Object = java.util.Date()
private var Long.date3: java.util.Date = java.util.Date()
public var Long.date5: java.util.Date = java.util.Date()
@@ -0,0 +1,14 @@
package test
internal var jet.Long.date1: java.lang.Object
internal fun jet.Long.<get-date1>(): java.lang.Object
internal fun jet.Long.<set-date1>(/*0*/ <set-?>: java.lang.Object): jet.Unit
internal var jet.Long.date12: java.lang.Object
internal fun jet.Long.<get-date12>(): java.lang.Object
internal fun jet.Long.<set-date12>(/*0*/ <set-?>: java.lang.Object): jet.Unit
private var jet.Long.date3: java.util.Date
private fun jet.Long.<get-date3>(): java.util.Date
private fun jet.Long.<set-date3>(/*0*/ <set-?>: java.util.Date): jet.Unit
public var jet.Long.date5: java.util.Date
public fun jet.Long.<get-date5>(): java.util.Date
public fun jet.Long.<set-date5>(/*0*/ <set-?>: java.util.Date): jet.Unit
@@ -0,0 +1,28 @@
package test
var Long.date1: Object = java.util.Date()
set
var Long.date2: Object = java.util.Date()
protected set
var Long.date3: Object = java.util.Date()
private set
private var Long.date4: java.util.Date = java.util.Date()
set
public var Long.date7: java.util.Date = java.util.Date()
set
public var Long.date8: java.util.Date = java.util.Date()
internal set
public var Long.date9: java.util.Date = java.util.Date()
private set
public var Long.date10: java.util.Date = java.util.Date()
protected set
public var Long.date11: java.util.Date = java.util.Date()
public set
@@ -0,0 +1,29 @@
package test
internal var jet.Long.date1: java.lang.Object
internal fun jet.Long.<get-date1>(): java.lang.Object
internal fun jet.Long.<set-date1>(/*0*/ <set-?>: java.lang.Object): jet.Unit
public var jet.Long.date10: java.util.Date
public fun jet.Long.<get-date10>(): java.util.Date
protected fun jet.Long.<set-date10>(/*0*/ <set-?>: java.util.Date): jet.Unit
public var jet.Long.date11: java.util.Date
public fun jet.Long.<get-date11>(): java.util.Date
public fun jet.Long.<set-date11>(/*0*/ <set-?>: java.util.Date): jet.Unit
internal var jet.Long.date2: java.lang.Object
internal fun jet.Long.<get-date2>(): java.lang.Object
protected fun jet.Long.<set-date2>(/*0*/ <set-?>: java.lang.Object): jet.Unit
internal var jet.Long.date3: java.lang.Object
internal fun jet.Long.<get-date3>(): java.lang.Object
private fun jet.Long.<set-date3>(/*0*/ <set-?>: java.lang.Object): jet.Unit
private var jet.Long.date4: java.util.Date
private fun jet.Long.<get-date4>(): java.util.Date
private fun jet.Long.<set-date4>(/*0*/ <set-?>: java.util.Date): jet.Unit
public var jet.Long.date7: java.util.Date
public fun jet.Long.<get-date7>(): java.util.Date
public fun jet.Long.<set-date7>(/*0*/ <set-?>: java.util.Date): jet.Unit
public var jet.Long.date8: java.util.Date
public fun jet.Long.<get-date8>(): java.util.Date
internal fun jet.Long.<set-date8>(/*0*/ <set-?>: java.util.Date): jet.Unit
public var jet.Long.date9: java.util.Date
public fun jet.Long.<get-date9>(): java.util.Date
private fun jet.Long.<set-date9>(/*0*/ <set-?>: java.util.Date): jet.Unit