}
boolean untilLoop = modenode.isPCode(PCoder.PC_UNTIL);
Node enode = startAt.getSubNode(1, Node.TYPE_LAZY);
Interpreter interpreter = Interpreter.mySelf();
StaticHeap global = interpreter.getGLOBAL();
boolean oldCanLoop = interpreter.isCanLoop();
boolean oldInLoop = interpreter.isInLoop();
interpreter.setCanLoop(true);
interpreter.setInLoop(true);
//
int href = global.size();
int slock = global.getOffset();
Heap local=new Heap();
global.push(local);
//
/*
* 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.
*
*/
boolean loop = true;
while (loop) {
_clear_closure_(local);
xnode = enode.exec(true);
loop = xnode==null && interpreter.isCanIterate() && (untilLoop ? !xPC_Condition(local, cnode): xPC_Condition(local, cnode));
}
//
global.pull();
if (global.size() != href) {
global.setOffset(slock);
global.setSize(href); // restaurer le heap à la bonne taille
}
//
interpreter.consumeBreakCode_onLoop();
interpreter.setCanLoop(oldCanLoop);
interpreter.setInLoop(oldInLoop);
return xnode;
}
else {
// forme (do {...} forever)
modenode = startAt.getSubNode(2, Node.TYPE_PCODE);
if (!modenode.isPCode(PCoder.PC_FOREVER)) {
throw new InterpreterException(StdErrors.Syntax_error);
}
}
Node enode = startAt.getSubNode(1, Node.TYPE_LAZY);
Interpreter interpreter = Interpreter.mySelf();
StaticHeap global = interpreter.getGLOBAL();
boolean oldCanLoop = interpreter.isCanLoop();
boolean oldInLoop = interpreter.isInLoop();
interpreter.setCanLoop(true);
interpreter.setInLoop(true);
//
int href = global.size();
int slock = global.getOffset();
//int tlock = global.getTailStack().getLock();
// FERMETURE NECESSAIRE...
//System.out.println("FOREVER: push...");
global.push();
Heap local=global.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 (xnode==null && interpreter.isCanIterate()) {
_clear_closure_(local);
xnode = enode.exec(true);
}
global.pull();
//global.getTailStack().setLock(tlock); // restore la tail recursive Stack...
if (global.size() != href) {
global.setOffset(slock);
global.setSize(href); // restaurer le heap à la bonne taille
}
//
interpreter.consumeBreakCode_onLoop();
interpreter.setCanLoop(oldCanLoop);
interpreter.setInLoop(oldInLoop);