FIR: load default value from meta-data
This commit is contained in:
committed by
Mikhail Glukhikh
parent
879563233a
commit
9352d52e7e
+1
-1
@@ -1,5 +1,5 @@
|
||||
public final annotation class Anno : R|kotlin/Annotation| {
|
||||
public constructor(value: R|kotlin/String|, x: R|kotlin/Int|): R|test/Anno|
|
||||
public constructor(value: R|kotlin/String| = STUB, x: R|kotlin/Int| = STUB): R|test/Anno|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
public final data class My : R|kotlin/Any| {
|
||||
public final operator fun component1(): R|kotlin/Int|
|
||||
|
||||
public final fun copy(x: R|kotlin/Int|): R|test/My|
|
||||
public final fun copy(x: R|kotlin/Int| = STUB): R|test/My|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final class ClassWithConstructorWithValueParamWithDefaultValue : R|kotlin/Any| {
|
||||
public constructor(p: R|kotlin/Int|): R|test/ClassWithConstructorWithValueParamWithDefaultValue|
|
||||
public constructor(p: R|kotlin/Int| = STUB): R|test/ClassWithConstructorWithValueParamWithDefaultValue|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final class TestConstructor : R|kotlin/Any| {
|
||||
public constructor(p: R|kotlin/Int|, s: R|kotlin/Int|): R|test/TestConstructor|
|
||||
public constructor(p: R|kotlin/Int| = STUB, s: R|kotlin/Int|): R|test/TestConstructor|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final class TestConstructor : R|kotlin/Any| {
|
||||
public constructor(p: R|kotlin/Int|, d: R|kotlin/Int|): R|test/TestConstructor|
|
||||
public constructor(p: R|kotlin/Int| = STUB, d: R|kotlin/Int| = STUB): R|test/TestConstructor|
|
||||
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -2,7 +2,7 @@ public final class A : R|kotlin/Any| {
|
||||
public constructor(): R|test/A|
|
||||
|
||||
public final class TestConstructor : R|kotlin/Any| {
|
||||
public constructor(p: R|kotlin/Int|): R|test/A.TestConstructor|
|
||||
public constructor(p: R|kotlin/Int| = STUB): R|test/A.TestConstructor|
|
||||
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final class TestConstructor : R|kotlin/Any| {
|
||||
private constructor(p: R|kotlin/Int|): R|test/TestConstructor|
|
||||
private constructor(p: R|kotlin/Int| = STUB): R|test/TestConstructor|
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -3,7 +3,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final operator fun component2(): R|kotlin/Double|
|
||||
|
||||
public final fun copy(x: R|kotlin/String|, z: R|kotlin/Double|): R|test/DataClass|
|
||||
public final fun copy(x: R|kotlin/String| = STUB, z: R|kotlin/Double| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
public final data class DataClass : R|kotlin/Any| {
|
||||
public final operator fun component1(): R|kotlin/String|
|
||||
|
||||
public final fun copy(x: R|kotlin/String|): R|test/DataClass|
|
||||
public final fun copy(x: R|kotlin/String| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final operator fun component2(): R|kotlin/Int|
|
||||
|
||||
public final fun copy(x: R|kotlin/String|, y: R|kotlin/Int|): R|test/DataClass|
|
||||
public final fun copy(x: R|kotlin/String| = STUB, y: R|kotlin/Int| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
|
||||
|
||||
@@ -3,7 +3,7 @@ public final data class DataClass : R|kotlin/Any| {
|
||||
|
||||
public final operator fun component2(): R|kotlin/Int|
|
||||
|
||||
public final fun copy(x: R|kotlin/String|, y: R|kotlin/Int|): R|test/DataClass|
|
||||
public final fun copy(x: R|kotlin/String| = STUB, y: R|kotlin/Int| = STUB): R|test/DataClass|
|
||||
|
||||
public open operator fun equals(other: R|kotlin/Any|?): R|kotlin/Boolean|
|
||||
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
public final enum class En : R|kotlin/Enum<test/En>| {
|
||||
private constructor(b: R|kotlin/Boolean|, i: R|kotlin/Int|): R|test/En|
|
||||
private constructor(b: R|kotlin/Boolean| = STUB, i: R|kotlin/Int| = STUB): R|test/En|
|
||||
|
||||
}
|
||||
|
||||
+2
-1
@@ -1 +1,2 @@
|
||||
public final fun funDefaultArg(p: R|kotlin/Int|, q: R|kotlin/Int|, r: R|kotlin/Int|): R|kotlin/Int|
|
||||
public final fun funDefaultArg(p: R|kotlin/Int|, q: R|kotlin/Int| = STUB, r: R|kotlin/Int| = STUB): R|kotlin/Int|
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
public final annotation class Ann : R|kotlin/Annotation| {
|
||||
public constructor(value: R|kotlin/String|): R|test/Ann|
|
||||
public constructor(value: R|kotlin/String| = STUB): R|test/Ann|
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user