1990883bdc
Merge-request: KT-MR-8457 Merged-by: Vladimir Sukharev <Vladimir.Sukharev@jetbrains.com>
25 lines
1.4 KiB
Plaintext
Vendored
25 lines
1.4 KiB
Plaintext
Vendored
annotation class AnnoBackingField constructor() : Annotation
|
|
annotation class AnnoClass constructor() : Annotation
|
|
annotation class AnnoConstructor constructor() : Annotation
|
|
annotation class AnnoConstructorParameter constructor() : Annotation
|
|
annotation class AnnoDelegatedField constructor() : Annotation
|
|
annotation class AnnoFunction constructor() : Annotation
|
|
annotation class AnnoFunctionExtensionReceiver constructor() : Annotation
|
|
annotation class AnnoFunctionParam constructor() : Annotation
|
|
annotation class AnnoGetter constructor() : Annotation
|
|
annotation class AnnoProperty constructor() : Annotation
|
|
annotation class AnnoPropertyExtensionReceiver constructor() : Annotation
|
|
annotation class AnnoSetParam constructor() : Annotation
|
|
annotation class AnnoSetParam2 constructor() : Annotation
|
|
annotation class AnnoSetter constructor() : Annotation
|
|
annotation class AnnoSetter2 constructor() : Annotation
|
|
@AnnoClass class Foo @AnnoConstructor constructor(@AnnoConstructorParameter i: Int) {
|
|
@delegate:AnnoDelegatedField val immutableProp: Int
|
|
var mutableProp: Int
|
|
@AnnoSetter2 set
|
|
@AnnoProperty @field:AnnoBackingField var prop: Int
|
|
@AnnoGetter get
|
|
@AnnoSetter set
|
|
}
|
|
@AnnoPropertyExtensionReceiver val Foo.extProp: Int
|
|
@AnnoFunction fun @receiver:AnnoFunctionExtensionReceiver Foo.extfun(@AnnoFunctionParam x: Int) |