コード例 #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;
 }