}
Diag row = new Diag(rings);
Node btype = startAt.getSubNode(i++, Node.TYPE_PCODE);
Node enode = startAt.getSubNode(i++, Node.TYPE_LAZY);
Interpreter interpreter = Interpreter.mySelf();
boolean oldCanLoop = interpreter.isCanLoop();
boolean oldInLoop = interpreter.isInLoop();
interpreter.setCanLoop(true);
interpreter.setInLoop(true);
try {
if (btype.isPCode(PCoder.PC_DO)) {
/**
* (foreach-diag [[l1]...[ln]] do {...})
*/
Node argv;
Heap.push(); // nouvel espace local pour argv (exclusivment)
Heap argv_h = Heap.current(); // optimisation du 09/03/2012
Heap.push(); // nouvel espace local
Heap local = Heap.current();
/*
* Correction du 10 mai 2011:
* =========================
* Les boucles du type do{...} s'arrête dès qu'un résultat est retourné. Cela ne signifie
* bien entendu pas que la condition qui permet l'itération n'est pas vérifiée. Toutefois,
* comme les boucle du type do{...} ne peuvent retourner qu'un seul résultat, il est inutile
* de relancer l'itération suivante ddès qu'un résultat est fourni. Ainsi, pour permettre
* de continuer la boucle, il est possible de placer le résultat dans une variable et non de
* la retourner directement comme résultat.
*
*/
while (interpreter.isCanIterate() && row.hasNext() && xnode==null) {
_clear_closure_(local);
argv = Node.createCList();
argv.setArray(row.getNext());
argv_h.put(PCoder.ARGV, argv);
xnode = enode.exec(true);
}
Heap.pull(); // supprimer l'espace local...
Heap.pull(); // supprimer l'espace de noms argv...
}
else if (btype.isPCode(PCoder.PC_LIST)) {
/**
* (foreach-diag [[l1]...[ln]] list{...})
*/
Node argv;
xnode = Node.createCList();
Heap.push(); // nouvel espace local pour argv (exclusivment)
Heap argv_h = Heap.current(); // optimisation du 09/03/2012
Heap.push(); // nouvel espace local
Heap local = Heap.current();
while (interpreter.isCanIterate() && row.hasNext()) {
_clear_closure_(local);
argv = Node.createCList();
argv.setArray(row.getNext());
argv_h.put(PCoder.ARGV, argv);
rnode = enode.exec(true);
if (rnode != null)
xnode.addElement(rnode.secure());
}
Heap.pull(); // supprimer l'espace local...
Heap.pull(); // supprimer l'espace de noms pour argv...
}
else {
// erreur de syntaxe.
throw new InterpreterException(StdErrors.Syntax_error);
}
}
catch (Exception ex) {
interpreter.consumeBreakCode_onLoop();
interpreter.setCanLoop(oldCanLoop);
interpreter.setInLoop(oldInLoop);
throw ex;
}
interpreter.consumeBreakCode_onLoop();
interpreter.setCanLoop(oldCanLoop);
interpreter.setInLoop(oldInLoop);
return xnode;
}