* @param descr
* @return
*/
private VerifierFunctionCallDescr flatten(FunctionCallDescr descr,
VerifierComponent parent, int orderNumber) {
VerifierFunctionCallDescr functionCall = new VerifierFunctionCallDescr();
functionCall.setName(descr.getName());
functionCall.setArguments(descr.getArguments());
functionCall.setOrderNumber(orderNumber);
functionCall.setParent(parent);
return functionCall;
}