Supported loading named objects within class objects from compiled library.
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
package test
|
||||
|
||||
public class Outer {
|
||||
public class object {
|
||||
public object Obj {
|
||||
public val v: String = "val"
|
||||
public fun f(): String = "fun"
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
namespace test
|
||||
|
||||
public final class test.Outer : jet.Any {
|
||||
public final /*constructor*/ fun <init>(): test.Outer
|
||||
public final class object test.Outer.<class-object-for-Outer> : jet.Any {
|
||||
private final /*constructor*/ fun <init>(): test.Outer.<class-object-for-Outer>
|
||||
public final val Obj: test.Outer.<class-object-for-Outer>.Obj
|
||||
public final object test.Outer.<class-object-for-Outer>.Obj : jet.Any {
|
||||
private final /*constructor*/ fun <init>(): test.Outer.<class-object-for-Outer>.Obj
|
||||
public final fun f(): jet.String
|
||||
public final val v: jet.String
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user