/* */
/* 43 */ public void visit(int version, int access, String name, String superName, String[] interfaces, String sourceFile) { super.visit(version, access, name, superName, interfaces, sourceFile);
/* 44 */ this.flag = name.equals("java/lang/ClassLoader"); }
/* */
/* */ public CodeVisitor visitMethod(int access, String name, String desc, String[] exceptions, Attribute attrs) {
/* 47 */ CodeVisitor v = super.visitMethod(access, name, desc, exceptions, attrs);
/* 48 */ if (this.flag) {
/* 49 */ v = new AsmClassLoaderPreProcessor.PreProcessingVisitor(v, access, desc);
/* */ }
/* 51 */ return v;
/* */ }