public Expression createInitializer()
{
Location location = _expression.getLocation();
AssignmentNode assignment = new AssignmentNode(location, 2);
assignment.setChild(0, new MemberVariableNode(_classtype, _classtype, this));
assignment.setChild(1, _expression.getChild());
return new Expression(assignment, location);
}