return posify(new AnnotationElement().astName(createIdentifierIfNeeded(name, currentPos())).rawValue(value));
}
public Node createAnnotationFromElements(Node head, List<Node> tail) {
Annotation result = new Annotation();
if (head != null) result.rawElements().addToEnd(head);
if (tail != null) for (Node n : tail) if (n != null) result.rawElements().addToEnd(n);
return posify(result);
}
public Node createAnnotationFromElement(Node value) {