[PSI2IR] Set reflectionTarget for all adapted references

This commit is contained in:
Igor Chevdar
2021-02-01 15:35:03 +05:00
parent 690fb47cbb
commit bb8bf28b8b
27 changed files with 289 additions and 176 deletions
@@ -30,10 +30,13 @@ class Outer {
}
fun testConstructor(): Any {
return use(fn = local fun <init>(p0: Int): C {
return C(xs = [p0])
}
)
return use(fn = { // BLOCK
local fun <init>(p0: Int): C {
return C(xs = [p0])
}
::<init>
})
}
fun testInnerClassConstructor(outer: Outer): Any {