Esempio n. 1
0
 public Block newArray(Class<?> type) {
   nodes.add(TypeInstruction.newObjectArray(type));
   return this;
 }
Esempio n. 2
0
 public Block newObject(ParameterizedType type) {
   nodes.add(TypeInstruction.newObject(type));
   return this;
 }