I'm writing an IR extension. I need to check assig...
# compiler
a
I'm writing an IR extension. I need to check assignability so I want to call
isSubtypeOf
but I need a
IrTypeSystemContext
. Digging through the code it seems that all places I can find uses
createFilePhases
. But how I use the returned value here is unclear.
Perhaps this isn't possible in the IR phase?
Can I just create my own
JvmIrTypeSystemContext
?
p
a
Cool, so I can just create a new
IrTypeSystemContextImpl
, thanks!