* it was generated in 1.4.
*/
// LDC or LDC_W with a class as argument
Type t = (Type) cst;
String fieldName = getClassLiteralFieldName(t);
classLiteralCalls.add(fieldName);
mv.visitFieldInsn(GETSTATIC, className, fieldName, CLASS_FIELD_DESC);
Label nonNullLabel = new Label();
mv.visitJumpInsn(IFNONNULL, nonNullLabel);
String s;
if (t.getSort() == Type.OBJECT) {
s = t.getInternalName();
} else {
s = t.getDescriptor();
}
/* convert retroweaver runtime classes:
* Enum into net.sourceforge.retroweaver.runtime.Enum_
* concurrent classes into their backport equivalent