예제 #1
0
파일: Block.java 프로젝트: slimmilan/presto
 public Block invokeConstructor(Class<?> type, Iterable<Class<?>> parameterTypes) {
   nodes.add(InvokeInstruction.invokeConstructor(type, parameterTypes));
   return this;
 }
예제 #2
0
파일: Block.java 프로젝트: slimmilan/presto
 public Block invokeConstructor(
     ParameterizedType type, Iterable<ParameterizedType> parameterTypes) {
   nodes.add(InvokeInstruction.invokeConstructor(type, parameterTypes));
   return this;
 }
예제 #3
0
파일: Block.java 프로젝트: slimmilan/presto
 public Block invokeConstructor(Constructor<?> constructor) {
   nodes.add(InvokeInstruction.invokeConstructor(constructor));
   return this;
 }