59f192ef90
Includes changes to decompiled text Old syntax is used in builtins and project code for now
35 lines
299 B
Kotlin
35 lines
299 B
Kotlin
trait A
|
|
|
|
object Some1 : A {
|
|
|
|
}
|
|
|
|
object Some2:A
|
|
|
|
object Some3
|
|
|
|
:
|
|
|
|
|
|
A
|
|
|
|
val a = object:A {}
|
|
|
|
val b = object : A {}
|
|
|
|
class B {
|
|
default object:A {
|
|
|
|
}
|
|
}
|
|
|
|
class C {
|
|
default object :
|
|
A {
|
|
|
|
}
|
|
}
|
|
|
|
// SET_TRUE: SPACE_BEFORE_EXTEND_COLON
|
|
// SET_FALSE: SPACE_AFTER_EXTEND_COLON
|