[FIR] Rename qualifiedAccessOrAssignmentsOrAnnotationCalls to callsOrAssignments and add delegated constructor calls

This commit is contained in:
Kirill Rakhman
2023-06-23 11:37:19 +02:00
committed by Space Team
parent 6281faa063
commit 6d1d6e48c1
21 changed files with 69 additions and 64 deletions
@@ -6,7 +6,7 @@ enum class TestOk(val x: String = "OK") {
enum class TestErrors(val x: String) {
<!NO_VALUE_FOR_PARAMETER!>TEST1,<!>
TEST2<!NO_VALUE_FOR_PARAMETER!><!>(),
TEST2<!NO_VALUE_FOR_PARAMETER!>()<!>,
TEST3("Hello")
}
@@ -3,7 +3,7 @@ open class B0(x: Int)
class A0 : B0 {
<!EXPLICIT_DELEGATION_CALL_REQUIRED!>constructor()<!>
constructor(x: Int) : <!NO_VALUE_FOR_PARAMETER!>super<!>()
constructor(x: Int) : <!NO_VALUE_FOR_PARAMETER!>super()<!>
}
// --------------------------
@@ -17,4 +17,4 @@ val test2 = <!NO_VALUE_FOR_PARAMETER!>C2_Alias()<!>
class Test3 : <!API_NOT_AVAILABLE!>C1_Alias<!>()
class Test4 : <!NO_VALUE_FOR_PARAMETER!>C2_Alias<!>()
class Test4 : <!NO_VALUE_FOR_PARAMETER!>C2_Alias()<!>