SootMethod sootMethod = expr.getMethod();
Method method = factory.getMethod(sootMethod);
if (method == null)
return false;
Variable var = factory.createVariable(VariableType.NONE);
factory.addStatement(new Call(var, method, translateArguments(sootMethod, arguments, factory)));
// the constructor of custom collection types must produce corrupt collections
if (callee.getType() != VariableType.NONE) {
factory.addStatement(new ObjectCorrupt(callee));