Hello I am trying to create IR plugin that generates object. Anyone has experience with it?
k
kralli
10/18/2020, 12:23 PM
This probably belongs in #C7L3JB43G . That being said, judging by the error provided, it seems that you are missing a
SyntheticResolveExtension
. Resolution happens before generation. Therefor the compiler wont be able to use the generated code to resolve any references. You have to provide the necessary information about the classes, that you are going to generate later on, beforehand using said extension.
t
Tomasz Krakowiak
10/18/2020, 12:54 PM
@kralli Thanks, I'll try, what you're suggesting : )