3940414243444546474849
public PullEvent next() throws XPathException { while (true) { if (child == null) { child = children[i++].iterateEvents(context); } PullEvent current = child.next(); if (current != null) { return current; } child = null; if (i >= children.length) {