return posify(decl);
}
public Node createImportDeclaration(String staticKeyword, Node head, List<Node> tail, String dotStar) {
ImportDeclaration decl = new ImportDeclaration();
if (head != null) decl.rawParts().addToEnd(head);
if (tail != null) for (Node n : tail) decl.rawParts().addToEnd(n);
if (staticKeyword != null && staticKeyword.length() > 0) decl.astStaticImport(true);
if (dotStar != null && dotStar.length() > 0) decl.astStarImport(true);
return posify(decl);
}