I have a package name and a class name as String
s but I don't have the class specifically in my annotation processor. I need to use:
FunSpec.overriding(getOnlyElement(methodsIn(//stuck here)))
The stuck here
should be a setOf
ExecutableElement
s? How can I do this?
I've also checked here, but no so much luck.