Hello! I've switched to 1.3.70 and got error in my...
# compiler
p
Hello! I've switched to 1.3.70 and got error in my compiler plugin when calling
IrType.isInterface
, got
Copy code
java.lang.IllegalStateException: Symbol for deserialized  class Any is unbound.
As i understand this cause when getting owner from symbol of other module. 
Please advice me how to solve it.
l
Can you link the report on kotl.in/issue with some details?
r
I have a similar problem @PHondogo did you file an issue for this? or maybe found a fix?
p
As i understand, before calling reference.owner you should bound reference with Descriptor using pluginContext.symbolTable.referenceClass(classDescriptor).
r
I'm already doing that 🤷... Maybe I'm getting the class descriptor wrong. How did you get yours?
p
You right. I remeber - I switched my type checks from Ir model to descriptors. For my purposes that was anough. But not as good as it might be.