Esempio n. 1
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // set token and bump it
     $this->token = self::$next_token++;
     // init logic stack
     $this->logic = new ICE_Stack();
 }
Esempio n. 2
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // set token and bump it
     $this->token = self::$next_token++;
 }
Esempio n. 3
0
 /**
  * Constructor
  */
 public function __construct(ICE_Component $component = null)
 {
     parent::__construct($component);
     // init rules map
     $this->rules = new ICE_Map();
 }