. */ /* */ /*************************************************************************************/ require_once __DIR__ . "/../../fonctions/autoload.php"; // Stocke les infos sur une boucle pendant son évaluation class EvalBoucle{ public $iterations; public function __construct() { $this->iterations = array(); } public function ajoutIteration($iteration) { /* Retiré: if ($iteration->estValuee()) On ajoute une iteration par tour de boucle, comme le fait le parser de base. */ $this->iterations[] = $iteration; } } ?>