When specifying a.doAnother(account.getId); method a.doAnother(account.getId); Using visitMethodInsn() in ASM . I need to get the account type from the argument of the account.getId() method, and the account type is Account . however, I return the type account.getId() , which is long . How to get the type of account Account here?
Swati source share