will Kotlin serialization plugin be able to capture annotations applied on setters or getters?
Copy code
@SerialInfo
@Target{
AnnotationTarget.PROPERTY_SETTER,
AnnotationTarget.PROPERTY_GETTER}
annotation class KDocumentId
data class File( @get: KDocumentId val name:String?= null)
// this will just return empty list []
descriptor.getElementAnnotations(elementIndex)