Hello I am trying to create IR plugin that generates object. Anyone has experience with it?
t
Hello I am trying to create IR plugin that generates object. Anyone has experience with it?
k
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
@kralli Thanks, I'll try, what you're suggesting : )