271272273274275276277278279280281282
} List<?> l = (List<?>) o; if (l == null) { return; } Loop loop = helper.openLoop(l, variables); while (loop.hasCurrent()) { subTree.execute(out, helper); loop.next(); } loop.close(); }