[FIR] Fix dispatch receivers on inner classes' constructors

1. Inner class constructor should have its outer class as a dispatch
receiver, since it is necessary for the call. Before it was null
2. Substituted inner class constructor should have its original dispatch
 receiver type with the proper substitution. Before it was set to the
 class itself (since the class was usually passed as a new dispatch
 receiver)

Also, modify FIR renderer, so it properly renders the dispatch receiver
of the constructors
This commit is contained in:
Roman Golyshev
2021-09-28 16:40:18 +03:00
committed by Space
parent 8673819260
commit 9b9c51bc8d
65 changed files with 169 additions and 129 deletions
@@ -2,23 +2,23 @@ public open class Rendering : R|kotlin/Any| {
public constructor(): R|test/Rendering|
public/*package*/ open inner class A_Plain : R|kotlin/Any| {
public/*package*/ constructor(): R|test/Rendering.A_Plain|
public/*package*/ test/Rendering.constructor(): R|test/Rendering.A_Plain|
}
public/*package*/ open inner class B_Super : R|kotlin/Any| {
public/*package*/ constructor(): R|test/Rendering.B_Super|
public/*package*/ test/Rendering.constructor(): R|test/Rendering.B_Super|
}
public/*package*/ open inner class C_Sub : R|test/Rendering.B_Super| {
public/*package*/ constructor(): R|test/Rendering.C_Sub|
public/*package*/ test/Rendering.constructor(): R|test/Rendering.C_Sub|
}
public/*package*/ open inner class D_SuperG<T : R|ft<kotlin/Any, kotlin/Any?>|> : R|kotlin/Any| {
public/*package*/ constructor<T : R|ft<kotlin/Any, kotlin/Any?>|>(): R|test/Rendering.D_SuperG<T>|
public/*package*/ test/Rendering.constructor<T : R|ft<kotlin/Any, kotlin/Any?>|>(): R|test/Rendering.D_SuperG<T>|
}
public/*package*/ open inner class E_SubG : R|test/Rendering.D_SuperG<ft<kotlin/String, kotlin/String?>>| {
public/*package*/ constructor(): R|test/Rendering.E_SubG|
public/*package*/ test/Rendering.constructor(): R|test/Rendering.E_SubG|
}
public/*package*/ abstract interface F_Array : R|kotlin/Any| {