[FIR JS] Support DELEGATION_BY_DYNAMIC

This commit is contained in:
Nikolay Lunyak
2023-01-04 12:29:42 +02:00
committed by Space Team
parent 95b589fd94
commit 0f876f665a
10 changed files with 61 additions and 13 deletions
@@ -1,13 +0,0 @@
val x: dynamic = 23
interface I {
fun foo(): String
}
class C : I by x
object O : I by x
fun box(): String {
return object : I by x {}.foo()
}
@@ -1,3 +1,4 @@
// FIR_IDENTICAL
val x: dynamic = 23
interface I {