buf.append("{\n");
int n = 1;
if (attrs != null) {
buf.append("// METHOD ATTRIBUTES\n");
Attribute a = attrs;
while (a != null) {
if (a instanceof ASMifiable) {
((ASMifiable)a).asmify(buf, "methodAttrs" + n, null);
if (n > 1) {
buf.append("methodAttrs" + (n - 1) + ".next = methodAttrs" + n + ";\n");