mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Replace 'class object' with 'default object' in renderers and test data
Includes changes to decompiled text Old syntax is used in builtins and project code for now
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
trait TheTrait {
|
||||
class object {
|
||||
default object {
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
internal trait TheTrait {
|
||||
|
||||
internal class object Default {
|
||||
internal default object Default {
|
||||
/*primary*/ private constructor Default()
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
class Some {
|
||||
TestAnnotation class object {
|
||||
TestAnnotation default object {
|
||||
annotation class TestAnnotation
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@ package test
|
||||
internal final class Some {
|
||||
/*primary*/ public constructor Some()
|
||||
|
||||
test.Some.Default.TestAnnotation() internal class object Default {
|
||||
test.Some.Default.TestAnnotation() internal default object Default {
|
||||
/*primary*/ private constructor Default()
|
||||
|
||||
internal final annotation class TestAnnotation : kotlin.Annotation {
|
||||
|
||||
Reference in New Issue
Block a user