What is the replacement of `IrPluginContext.create...
# compiler
t
What is the replacement of
IrPluginContext.createDiagnosticReporter
in K2? Is there some info somewhere about how a compiler plugin is supposed to report warnings/messages? Thanks.
j
maybe all diagnostics must be done with FIR APIs and not in backend anymore?
t
That's make sense. But still, somehow I should be able to communicate from the backend.
j
No idea about the backend diagnostics from my side, sorry 😞
t
Truth to be told, I really would like to avoid going into FIR right now. I will, eventually, but not right now. Thx for the replay anyway. :)
🙂 1
j
Maybe you can check arrow analysis, I haven’t checked the details but it is not using FIR and it is reporting
t
Good tip, will do so.