Hello! How can I get IrClass of other module from ...
# compiler
p
Hello! How can I get IrClass of other module from symbol? when I call symbol.owner I got error: java.lang.IllegalStateException: Symbol for ... is unbound
s
It is broken atm in 1.3.70 and 1.4, maybe you can try for older version Alternatively, you can resolve descriptor on the frontend and pass it
p
Hello, @shikasd! Could you supply any example how to pass it from frontend?
s
BindingContext would be the best I guess
Also you can record them in AnalysisHandler or SyntheticResolve.. essentially any extension that works with frontend
p
Thanks, Andrei!