return null;
}
private AttributeListNode generateAttributeList(NodeFactory nodeFactory, String attributeString)
{
AttributeListNode result = null;
if (attributeString.length() > 0)
{
int index = attributeString.indexOf(SPACE);
if (index > -1)
{
IdentifierNode identifier = nodeFactory.identifier(attributeString.substring(index + 1));
AttributeListNode attributeList = nodeFactory.attributeList(identifier, null);
MemberExpressionNode memberExpression =
AbstractSyntaxTreeUtil.generateGetterSelector(nodeFactory, attributeString.substring(0, index), true);
ListNode list = nodeFactory.list(null, memberExpression);
result = nodeFactory.attributeList(list, attributeList);
}