* @throws Exception
*/
public Node call(Node argvList,int index) throws Exception {
Node expr=Node.createExpr().append(methode);
if(argvList!=null) expr.appendChildsOf(argvList,index);
return expr.exec(false);
}
/**
* Réalise l'appel de la méthode en assignant le contexte d'évaluation.
*
* On notera que call_unary() est une optimisation spéciale de call(). En effet, call_unary() correspond au cas où la méthode est unaire (un seul argument).