Chain scope for merging in lazy package descriptor

This commit is contained in:
Nikolay Krasko
2012-08-08 15:22:27 +04:00
parent 8d6b16eb23
commit 0faea1ed0b
7 changed files with 56 additions and 16 deletions
@@ -0,0 +1,7 @@
package test
object SomeObject {
fun test(a: Int) : Int {
return 0
}
}
@@ -0,0 +1,7 @@
namespace test
internal final object test.SomeObject : jet.Any {
internal final /*constructor*/ fun <init>(): test.SomeObject
internal final fun test(/*0*/ a: jet.Int): jet.Int
}
internal final val SomeObject: test.SomeObject
@@ -1,3 +1,6 @@
namespace test
internal final object test.Bar : jet.Any {
internal final /*constructor*/ fun <init>(): test.Bar
}
internal final val Bar: test.Bar