예제 #1
0
파일: Block.java 프로젝트: slimmilan/presto
 public Block newArray(Class<?> type) {
   nodes.add(TypeInstruction.newObjectArray(type));
   return this;
 }
예제 #2
0
파일: Block.java 프로젝트: slimmilan/presto
 public Block newObject(ParameterizedType type) {
   nodes.add(TypeInstruction.newObject(type));
   return this;
 }