__construct() 공개 메소드

public __construct ( array $attributes = [] )
$attributes array
예제 #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
파일: Next.php 프로젝트: ircmaxell/php-cfg
 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;
 }