Fix ConstantValue-related testData for loadJava tests

This commit is contained in:
Dmitry Petrov
2018-07-23 17:03:28 +03:00
parent cc1d9e88d5
commit 8f103dd8e5
79 changed files with 255 additions and 179 deletions
@@ -2,13 +2,13 @@
package test
class ClassVal() {
val property1 = 1
val property1 = { 1 }()
internal val property2 = 1
internal val property2 = { 1 }()
private val property3 = Object()
protected val property4: String = ""
protected val property4: String = { "" }()
public val property5: Int = 1
public val property5: Int = { 1 }()
}
@@ -2,14 +2,14 @@ package test
public final class ClassVal {
/*primary*/ public constructor ClassVal()
public final val property1: kotlin.Int = 1
public final val property1: kotlin.Int
public final fun <get-property1>(): kotlin.Int
internal final val property2: kotlin.Int = 1
internal final val property2: kotlin.Int
internal final fun <get-property2>(): kotlin.Int
private final val property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
protected final val property4: kotlin.String = ""
protected final val property4: kotlin.String
protected final fun <get-property4>(): kotlin.String
public final val property5: kotlin.Int = 1
public final val property5: kotlin.Int
public final fun <get-property5>(): kotlin.Int
}
@@ -2,19 +2,19 @@
package test
class ClassVal() {
val property1 = 1
val property1 = { 1 }()
get
internal val property2 = 1
internal val property2 = { 1 }()
get
private val property3 = Object()
get
protected val property4: String = ""
protected val property4: String = { "" }()
get
public val property5: Int = 1
public val property5: Int = { 1 }()
get
}
@@ -2,14 +2,14 @@ package test
public final class ClassVal {
/*primary*/ public constructor ClassVal()
public final val property1: kotlin.Int = 1
public final val property1: kotlin.Int
public final fun <get-property1>(): kotlin.Int
internal final val property2: kotlin.Int = 1
internal final val property2: kotlin.Int
internal final fun <get-property2>(): kotlin.Int
private final val property3: java.lang.Object
private final fun <get-property3>(): java.lang.Object
protected final val property4: kotlin.String = ""
protected final val property4: kotlin.String
protected final fun <get-property4>(): kotlin.String
public final val property5: kotlin.Int = 1
public final val property5: kotlin.Int
public final fun <get-property5>(): kotlin.Int
}