Rendering package FQ names instead of short names.

This commit is contained in:
Evgeny Gerashchenko
2013-12-04 17:43:32 +04:00
parent 212d303c7b
commit e175ebf60a
28 changed files with 44 additions and 33 deletions

View File

@@ -12,11 +12,11 @@ public open class DeeplyNestedStatic : java.lang.Object {
}
}
package DeeplyNestedStatic {
package test.DeeplyNestedStatic {
package Foo {
package test.DeeplyNestedStatic.Foo {
package Bar {
package test.DeeplyNestedStatic.Foo.Bar {
public open fun method(): jet.Unit
}
}

View File

@@ -5,6 +5,6 @@ public open class Simple : java.lang.Object {
public open fun foo(): jet.Unit
}
package Simple {
package test.Simple {
public open fun bar(): jet.Unit
}

View File

@@ -4,6 +4,6 @@ public open class StaticFinal : java.lang.Object {
public constructor StaticFinal()
}
package StaticFinal {
package test.StaticFinal {
public val foo: jet.String
}

View File

@@ -24,7 +24,7 @@ public final enum class StaticMembersInEnum : jet.Enum<test.StaticMembersInEnum>
}
}
package StaticMembersInEnum {
package test.StaticMembersInEnum {
public val CONSTANT: test.StaticMembersInEnum
public var STATIC_FIELD: jet.Int
public open fun foo(): jet.Unit