示例#1
0
 public Block newObject(ParameterizedType type) {
   nodes.add(TypeInstruction.newObject(type));
   return this;
 }
示例#2
0
 public Block newObject(Class<?> type) {
   nodes.add(TypeInstruction.newObject(type));
   return this;
 }