public function __construct($id, Ezer_ScopeInstance &$scope_instance, Ezer_Else $else)
 {
     parent::__construct($id, $scope_instance, $else);
 }
 public function __construct($id, Ezer_ScopeInstance &$scope_instance, Ezer_Foreach $foreach)
 {
     parent::__construct($id, $scope_instance, $foreach);
     $this->arg = $foreach->getArg();
     $this->order_type = $foreach->getOrderType();
 }
 public function __construct($id, array $variables, Ezer_ScopeInstance &$scope_instance, Ezer_Scope $scope = null)
 {
     parent::__construct($id, $scope_instance, $scope);
     $this->variables = $variables;
     $this->scope = $scope;
 }
 public function __construct(Ezer_ScopeInstance &$scope_instance, Ezer_If $if)
 {
     parent::__construct($scope_instance, $if);
 }
 public function __construct($id, Ezer_ScopeInstance &$scope_instance, Ezer_Flow $flow)
 {
     parent::__construct($id, $scope_instance, $flow);
 }
 public function __construct(array $variables, Ezer_ScopeInstance &$scope_instance, Ezer_Scope $scope)
 {
     parent::__construct($this, $scope);
     $this->variables = $variables;
 }
 public function __construct(Ezer_ScopeInstance &$scope_instance, Ezer_Sequence $sequence)
 {
     parent::__construct($scope_instance, $sequence);
 }