name= "type";
}
dexInstruction.setAttribute(name, constant.typeName());
if (constant instanceof CstMemberRef)
{
CstMemberRef memberRef= (CstMemberRef) constant;
String definingClassType= memberRef.getDefiningClass().getClassType().toHuman();
dexInstruction.setAttribute("class-type", definingClassType);
addReference(referencedTypes, definingClassType, ReferenceKind.USAGE);
CstNat nameAndType= memberRef.getNat();
String memberType= nameAndType.getFieldType().getType().toHuman();
dexInstruction.setAttribute("member-type", memberType);
addReference(referencedTypes, memberType, ReferenceKind.USAGE);
String memberName= nameAndType.getName().toHuman();
dexInstruction.setAttribute("member-name", memberName);