langtools/src/share/classes/com/sun/tools/javac/jvm/ClassWriter.java
changeset 13689 4d519199a6aa
parent 13635 5c742eabba7c
child 14046 8ef5d5b19998
equal deleted inserted replaced
13636:bee2d435e11f 13689:4d519199a6aa
   823             databuf.appendChar(pool.put(typeSig(e.value.type)));
   823             databuf.appendChar(pool.put(typeSig(e.value.type)));
   824             databuf.appendChar(pool.put(e.value.name));
   824             databuf.appendChar(pool.put(e.value.name));
   825         }
   825         }
   826         public void visitClass(Attribute.Class clazz) {
   826         public void visitClass(Attribute.Class clazz) {
   827             databuf.appendByte('c');
   827             databuf.appendByte('c');
   828             databuf.appendChar(pool.put(typeSig(clazz.type)));
   828             databuf.appendChar(pool.put(typeSig(clazz.classType)));
   829         }
   829         }
   830         public void visitCompound(Attribute.Compound compound) {
   830         public void visitCompound(Attribute.Compound compound) {
   831             databuf.appendByte('@');
   831             databuf.appendByte('@');
   832             writeCompoundAttribute(compound);
   832             writeCompoundAttribute(compound);
   833         }
   833         }