src/share/classes/com/sun/tools/javac/jvm/ClassWriter.java

changeset 1313
873ddd9f4900
parent 1309
c9749226cdde
child 1336
26d93df3905a
equal deleted inserted replaced
1310:542c87b8ce7f 1313:873ddd9f4900
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 }

mercurial