Is there a correct FIR extension point to use to a...
# compiler
r
Is there a correct FIR extension point to use to add some annotations to some (non-generated) declarations? In particular,
@OptIn
and annotations with
@RequiresOptIn
. I'm currently doing it in
FirStatusTransformerExtension
and it has worked fine so far
d
There is no such API. The fact its working in status extension is the coincidence and I wouldn't rely on that.
r