getObjectDescriptors() for lazy classes

This commit is contained in:
Nikolay Krasko
2012-08-08 17:36:04 +04:00
parent 79ffea63a6
commit fea73b3dce
5 changed files with 39 additions and 11 deletions
@@ -0,0 +1,9 @@
package test
class A {
object B {
fun foo(a: Int) : String {
return ""
}
}
}
@@ -0,0 +1,6 @@
namespace test
internal final class test.A : jet.Any {
public final /*constructor*/ fun <init>(): test.A
internal final val B: test.A.B
}