[JS IR] Fix creating of classes extended from nested one

[JS IR] Extract getClassRef method

 ^KT-44950 fixed
This commit is contained in:
Ilya Goncharov
2021-03-15 18:00:28 +03:00
committed by TeamCityServer
parent a61312120b
commit 88abb3d6c9
12 changed files with 76 additions and 33 deletions
@@ -0,0 +1,9 @@
object Foo {
open class Bar(val bar: String)
}
class Baz: Foo.Bar("OK")
fun box(): String {
return Baz().bar
}