public Expression compile(Executable exec) throws XPathException {
Expression content = compileSequenceConstructor(exec, iterateAxis(Axis.CHILD), true);
if (content == null) {
content = Literal.makeEmptySequence();
}
Doctype inst = new Doctype(content);
return inst;
}