I updated my plugin to 2.2.0-RC and migrated my ko...
# compiler
h
I updated my plugin to 2.2.0-RC and migrated my kotlin compiler tests from Zac kct-fork to the official test framework. Now I noticed an
IR verifier errors: non-unique element
because I reused an IrConst expression (with Int value). While I also noticed, the IrVerifier was removed in 2.2.20, do I really need to create a new IrConst/IR expression every time?
👌 1
p
It wasn't removed, it was merged with
IrValidator
, which essentially does the same work.