/* */ private String getTopType(int pos) throws BadBytecode {
/* 117 */ Frame frame = getFrame(pos);
/* 118 */ if (frame == null) {
/* 119 */ return null;
/* */ }
/* 121 */ CtClass clazz = frame.peek().getCtClass();
/* 122 */ return clazz != null ? Descriptor.toJvmName(clazz) : null;
/* */ }
/* */
/* */ private int replace(ConstPool cp, CodeIterator iterator, int pos, int opcode, String signature) throws BadBytecode
/* */ {