430431432433434435436437438439440
@Override public AstNode root(Iterable<AstNode> children) { AstRoot r = new AstRoot(); for (AstNode c : children) { if (c != null) { r.addChild(c); } } return r; }