mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-18 00:21:29 +00:00
Rendering package FQ names instead of short names.
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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
|
||||
}
|
||||
|
||||
@@ -4,6 +4,6 @@ public open class StaticFinal : java.lang.Object {
|
||||
public constructor StaticFinal()
|
||||
}
|
||||
|
||||
package StaticFinal {
|
||||
package test.StaticFinal {
|
||||
public val foo: jet.String
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user