Пример #1
0
 /** @return deep copy of this attribute */
 @Override
 public Attribute copy(ConstantPool _constant_pool) {
   StackMap c = (StackMap) clone();
   c.map = new StackMapEntry[map_length];
   for (int i = 0; i < map_length; i++) {
     c.map[i] = map[i].copy();
   }
   c.constant_pool = _constant_pool;
   return c;
 }