Is there any utility to find all functions belongi...
# compiler
n
Is there any utility to find all functions belonging to some
IrClass
or one of the superclasses, removing duplicates (if that’s a thing)?
Turns out that, in my case, they are already present in
IrClass.functions
. I didn’t notice I was filtering the superclass functions out with an
isFakeOverride
check (which I thought would only remove equals, hashCode and toString).