Remove toInt() from rendering IntValue
This commit is contained in:
@@ -2,6 +2,6 @@ package test
|
||||
|
||||
internal final class ClassVal {
|
||||
/*primary*/ public constructor ClassVal()
|
||||
internal final val aa: kotlin.Int = 1.toInt()
|
||||
internal final val aa: kotlin.Int = 1
|
||||
internal final fun <get-aa>(): kotlin.Int
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
package test
|
||||
|
||||
internal val nsVal: kotlin.Int = 1.toInt()
|
||||
internal val nsVal: kotlin.Int = 1
|
||||
internal fun <get-nsVal>(): kotlin.Int
|
||||
|
||||
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
internal open class BaseClass {
|
||||
/*primary*/ public constructor BaseClass()
|
||||
internal final val exactly: kotlin.Int = 17.toInt()
|
||||
internal final val exactly: kotlin.Int = 17
|
||||
internal final fun <get-exactly>(): kotlin.Int
|
||||
}
|
||||
|
||||
|
||||
@@ -2,14 +2,14 @@ package test
|
||||
|
||||
internal final class ClassVal {
|
||||
/*primary*/ public constructor ClassVal()
|
||||
internal final val property1: kotlin.Int = 1.toInt()
|
||||
internal final val property1: kotlin.Int = 1
|
||||
internal final fun <get-property1>(): kotlin.Int
|
||||
internal final val property2: kotlin.Int = 1.toInt()
|
||||
internal final val property2: kotlin.Int = 1
|
||||
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 fun <get-property4>(): kotlin.String
|
||||
public final val property5: kotlin.Int = 1.toInt()
|
||||
public final val property5: kotlin.Int = 1
|
||||
public final fun <get-property5>(): kotlin.Int
|
||||
}
|
||||
|
||||
@@ -2,14 +2,14 @@ package test
|
||||
|
||||
internal final class ClassVal {
|
||||
/*primary*/ public constructor ClassVal()
|
||||
internal final val property1: kotlin.Int = 1.toInt()
|
||||
internal final val property1: kotlin.Int = 1
|
||||
internal final fun <get-property1>(): kotlin.Int
|
||||
internal final val property2: kotlin.Int = 1.toInt()
|
||||
internal final val property2: kotlin.Int = 1
|
||||
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 fun <get-property4>(): kotlin.String
|
||||
public final val property5: kotlin.Int = 1.toInt()
|
||||
public final val property5: kotlin.Int = 1
|
||||
public final fun <get-property5>(): kotlin.Int
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user