I am writing a KSP processor and I want to create a class that has a property which is annotated like this:
class MyClass {
@field:Annotation
var myProperty: MyType
}
Is that currently possible?
I am writing a KSP processor and I want to create a class that has a property which is annotated like this:
class MyClass {
@field:Annotation
var myProperty: MyType
}
Is that currently possible?
I've found a solution myself: