package abstrasy.pcfx;
import abstrasy.Heap;
import abstrasy.Node;
import abstrasy.ASymbol;
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_scope extends PCFx {
public PCFx_scope() {
}
private final static long ARGSTYPE = Node.TYPE_LAZY;
private final static Node getSection(Node source) throws Exception {
if (source.isLazy()) {
/**
* (scope <?> {...})
*/
return Node.createScope(source);
}
/*
* Présent le risque d'effets de bord, car il est possible de récupérer les variables
* privées d'un namespace d'une fonction.
*
* else if(source.isFunction()){
//
// (namespace <?> function)
//
return Node.createLazy(ComposTools.getObjectNode(source));
}*/
else {
/**
* (scope autre) -> Erreur...
*/
throw new InterpreterException(StdErrors.Argument_type_mismatch);
}
}
/**
* eval
*
* @param startAt Node
* @return Node
* @throws Exception
* @todo Implémenter cette méthode abstrasy.PCFx
*/
public Node eval(Node startAt) throws Exception {
startAt.isGoodArgsCnt(2, 3);
if (startAt.size() == 2) {
/**
* forme : (scope ...)
*/
Node section = startAt.getSubNode(1, ARGSTYPE);
return getSection(section);
}
else {
/**
* forme : (scope 'Symbole ...)
*/
ASymbol symbole = startAt.getSubNode(1, Node.TYPE_QSYMBOL).getSymbol();
if (!symbole.isImmutable())
throw new InterpreterException(StdErrors.Immutable_symbol_required);
Node section = startAt.getSubNode(2, ARGSTYPE);
Heap.defv(symbole, getSection(section));
return null;
}
}
}