ReturnStatementNode returnStatement = nodeFactory.returnStatement(returnList);
StatementListNode functionStatementList = nodeFactory.statementList(null, returnStatement);
FunctionCommonNode functionCommon = nodeFactory.functionCommon(context, null, functionSignature,
functionStatementList);
functionCommon.setUserDefinedBody(true);
return nodeFactory.functionDefinition(context, attributeList, functionName, functionCommon);
}
private VariableDefinitionNode generateStaticOldValueVariable(NodeFactory nodeFactory,
String className,
String qualifiedBackingPropertyName)