Where is annotation stored in ir tree for backing field?
Where is annotation stored in ir tree? is it in backing field descriptor?
I have
@Deprecated("")
val DEPRECATED_STATIC_FIELD = "deprecated field"
ir tree is below
PROPERTY name:DEPRECATED_STATIC_FIELD visibility:public modality:FINAL [val]
annotations:
Deprecated(message = '', replaceWith = , level = )
FIELD PROPERTY_BACKING_FIELD name:DEPRECATED_STATIC_FIELD type:kotlin.String visibility:private [final,static]
EXPRESSION_BODY
CONST String type=kotlin.String...