Hello, is there any way to find `TypeElement`’s `E...
# kapt
o
Hello, is there any way to find `TypeElement`’s
Element
proper name (e.g. method name) if
internal
is applied for property? E.g. for
Copy code
@MyAnnotation
class MyClass {internal val some = "sample"}
kapt gives me wrong name for
val
getter (it’s
getSome$my-module-name()
while true is
getSome$production_sources_for_module_my-module-name_main()
Could it be the issue with the stubbing?