Inheritance: extends PHPCfg\Op
示例#1
0
 public function __construct($name, Operand $value, Block $valueBlock, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->name = $this->addReadRef($name);
     $this->value = $this->addReadRef($value);
     $this->valueBlock = $valueBlock;
 }
示例#2
0
 public function __construct(Operand $var, Block $defaultBlock = null, Operand $defaultVar = null, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->var = $this->addWriteRef($var);
     $this->defaultBlock = $defaultBlock;
     $this->defaultVar = $this->addReadRef($defaultVar);
 }
示例#3
0
 public function __construct(Operand $var, Block $defaultBlock, Operand $defaultVar, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->var = $var;
     $this->defaultBlock = $defaultBlock;
     $this->defaultVar = $defaultVar;
 }
示例#4
0
文件: Throw_.php 项目: royopa/php-cfg
 public function __construct(Operand $expr, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->expr = $expr;
 }
示例#5
0
 public function __construct(Operand $var, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->var = $this->addReadRef($var);
 }
示例#6
0
 public function __construct(Operand $expr = null, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->expr = $this->addReadRef($expr);
 }
示例#7
0
文件: Return_.php 项目: nikic/php-cfg
 public function __construct(Variable $expr = null, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->expr = $expr;
 }
示例#8
0
文件: Unset_.php 项目: nikic/php-cfg
 public function __construct(array $exprs, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->exprs = $exprs;
 }
示例#9
0
 public function __construct(array $exprs, array $attributes = [])
 {
     parent::__construct($attributes);
     $this->exprs = $this->addReadRef($exprs);
 }
示例#10
0
文件: Const_.php 项目: nikic/php-cfg
 public function __construct($name, Variable $value, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->name = $name;
     $this->value = $value;
 }
示例#11
0
文件: Reset.php 项目: nikic/php-cfg
 public function __construct(Variable $var, array $attributes = array())
 {
     parent::__construct($attributes);
     $this->var = $var;
 }