public Expression createStaticInitializer()
{
Location location = _expression.getLocation();
AssignmentNode assignment = new AssignmentNode(location, 2);
assignment.setChild(0, new StaticVariableNode(this));
assignment.setChild(1, new ConstantNode(getValue()));
return new Expression(assignment, location);
}