Previously (M2) in IrGenerationExtension I was able to scan all module dependecies using ModuleDescriptor.allDependencyModules, select needed classes, reference them using pluginContext.symbolTable.referenceClass(ClassDescriptor) and generate needed expressions with them.
How can I do it in M3 in IR phase?
Now in M3 it complains with list of unbound symbols.
I need all IrClasses from dependency modules. It would be even better to scan using only Ir structures without use of Descriptors.