Exemplo n.º 1
0
 public function __construct($name, $args, $body, $line)
 {
     parent::__construct($line);
     $this->name = $name;
     $this->args = $args;
     $this->body = $body;
 }
Exemplo n.º 2
0
 public function __construct($name, $attrs, $value, $line)
 {
     parent::__construct($line);
     $this->name = $name;
     $this->attrs = $attrs;
     $this->value = $value;
 }
Exemplo n.º 3
0
 public function __construct($seq, $key, $value, $body, $else, $line)
 {
     parent::__construct($line);
     $this->seq = $seq;
     $this->key = $key;
     $this->value = $value;
     $this->body = $body;
     $this->else = $else;
 }
Exemplo n.º 4
0
 public function __construct($tests, $else, $line)
 {
     parent::__construct($line);
     $this->tests = $tests;
     $this->else = $else;
 }
Exemplo n.º 5
0
 public function __construct($data, $line)
 {
     parent::__construct($line);
     $this->data = $data;
 }
Exemplo n.º 6
0
 public function __construct($name, $line)
 {
     parent::__construct($line);
     $this->name = $name;
 }
Exemplo n.º 7
0
 public function __construct($include, $params, $line)
 {
     parent::__construct($line);
     $this->include = $include;
     $this->params = $params;
 }
Exemplo n.º 8
0
 public function __construct($expr, $line)
 {
     parent::__construct($line);
     $this->expr = $expr;
 }
Exemplo n.º 9
0
 public function __construct($module, $import, $line)
 {
     parent::__construct($line);
     $this->module = $module;
     $this->import = $import;
 }
Exemplo n.º 10
0
 public function __construct($parent, $params, $line)
 {
     parent::__construct($line);
     $this->parent = $parent;
     $this->params = $params;
 }