Hi, is there a way to read the full method signatu...
# compiler
m
Hi, is there a way to read the full method signature from a KtNamedFunction? Was wondering if there is a utils method or something like that. Thanks!
s
bindingTrace[BindingContext.DECLARATION_TO_DESCRIPTOR, yourKtNamedFunction].name
should do it
Ah I misread, you wanted the method signature 😅 you might be able to get something via the DeclarationDescriptor anyways 🙂
m
Thanks! I think i figured ultimately using IR backend