Package abstrasy.pcfx

Source Code of abstrasy.pcfx.PCFx_continue

package abstrasy.pcfx;


import abstrasy.Heap;
import abstrasy.Interpreter;
import abstrasy.Node;

import abstrasy.interpreter.InterpreterException;
import abstrasy.interpreter.StdErrors;

/**
* Abstrasy Interpreter
*
* Copyright : Copyright (c) 2006-2012, Luc Bruninx.
*
* Concédée sous licence EUPL, version 1.1 uniquement (la «Licence»).
*
* Vous ne pouvez utiliser la présente oeuvre que conformément à la Licence.
* Vous pouvez obtenir une copie de la Licence à l’adresse suivante:
*
*   http://www.osor.eu/eupl
*
* Sauf obligation légale ou contractuelle écrite, le logiciel distribué sous
* la Licence est distribué "en l’état", SANS GARANTIES OU CONDITIONS QUELLES
* QU’ELLES SOIENT, expresses ou implicites.
*
* Consultez la Licence pour les autorisations et les restrictions
* linguistiques spécifiques relevant de la Licence.
*
*
* @author Luc Bruninx
* @version 1.0
*/

public class PCFx_continue extends PCFx {

    public PCFx_continue() {
    }

    /**
     * eval
     *
     * @param startAt Node
     * @return Node
     * @throws Exception
     * @todo Implémenter cette méthode abstrasy.PCFx
     */
    public Node eval(Node startAt) throws Exception {
        startAt.isGoodArgsLength(false,2);
        Interpreter interpreter = Interpreter.mySelf();
        //Node rnode=null;
        //
        //System.out.println("Return getCallerSignature :" + interpreter.getCallerSignature());
        if ((!interpreter.isTerminalNode()) || interpreter.getCallerSignature() == 0)
            // il ne devrait pas y avoir de signature GUID = 0...
            // si c'est le cas, c'est que qu'aucune fonction n'a été appelée...
            throw new InterpreterException(StdErrors.Continue_misplaced);

        int arg_i=1;
        // récupérer le premier élément..
        Node r = startAt.getSubNode(arg_i++, Node.VTYPE_VALUABLE);
       
        //S'il s'agit d'une expression quotée, il ne peut pas y avoir d'autres éléments...
        if(r.getQType()==Node.TYPE_QEXPR){
            startAt.isGoodArgsCnt(2);
            r=r.deref().letQuoted(false);
        }
        else{
            // sinon... on construit une expression temporaire...
            r=new Node().append(r);
            while(arg_i<startAt.size())
                r.addElement(startAt.getSubNode(arg_i++, Node.VTYPE_VALUABLE));
            r.setDTrace(startAt.getDTrace());
        }
        try {
            Heap.setRETURN(r);
        }
        catch (Exception ex) {
            throw new InterpreterException(StdErrors.Return_register_error);
        }

        //

        if (interpreter.getBreakCode() != Interpreter.BREAKCODE_TAIL)
            interpreter.setBreakCode(Interpreter.BREAKCODE_RETURN);

        return null;
    }

}
TOP

Related Classes of abstrasy.pcfx.PCFx_continue

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.