4950515253545556
@Override public List<Variable> apply(List<Variable> input) { if (result == null) { return super.apply(input); } else { return list(new Constant("?", result)); } }
26272829303132
public List<Variable> apply(List<Variable> input) { Type array = clazz; for (int i = 0; i < dims; i++) { array = array.toArray(); } return list(new Constant("?", array)); }
38394041424344
} @Override public List<Variable> apply(List<Variable> input) { Variable variable = input.get(0); return list(new Constant(variable.getName(), to)); }
42434445464748
this.name = name; this.signature = signature; this.params = params; this.isStatic = isStatic; this.returnType = returnType; this.returnValue = new Constant("?", returnType); }