示例#1
0
 public function __construct($name, $args, $body, $line)
 {
     parent::__construct($line);
     $this->name = $name;
     $this->args = $args;
     $this->body = $body;
 }
示例#2
0
文件: SetNode.php 项目: nramenta/flow
 public function __construct($name, $attrs, $value, $line)
 {
     parent::__construct($line);
     $this->name = $name;
     $this->attrs = $attrs;
     $this->value = $value;
 }
示例#3
0
文件: ForNode.php 项目: nramenta/flow
 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;
 }
示例#4
0
文件: IfNode.php 项目: nramenta/flow
 public function __construct($tests, $else, $line)
 {
     parent::__construct($line);
     $this->tests = $tests;
     $this->else = $else;
 }
示例#5
0
 public function __construct($data, $line)
 {
     parent::__construct($line);
     $this->data = $data;
 }
示例#6
0
 public function __construct($name, $line)
 {
     parent::__construct($line);
     $this->name = $name;
 }
示例#7
0
 public function __construct($include, $params, $line)
 {
     parent::__construct($line);
     $this->include = $include;
     $this->params = $params;
 }
示例#8
0
 public function __construct($expr, $line)
 {
     parent::__construct($line);
     $this->expr = $expr;
 }
示例#9
0
 public function __construct($module, $import, $line)
 {
     parent::__construct($line);
     $this->module = $module;
     $this->import = $import;
 }
示例#10
0
 public function __construct($parent, $params, $line)
 {
     parent::__construct($line);
     $this->parent = $parent;
     $this->params = $params;
 }