public CodeBlock OCALLDYN(Type types, int arity, ISourceLocation src) {
return add(new OCallDyn(this, getTypeConstantIndex(types), arity, src));
}
public CodeBlock CALLJAVA(String methodName, String className, Type parameterTypes, Type keywordTypes, int reflect){
return add(new CallJava(this, getConstantIndex(vf.string(methodName)),
getConstantIndex(vf.string(className)),
getTypeConstantIndex(parameterTypes),
getTypeConstantIndex(keywordTypes),
reflect));
}