PHPCfg\Op\Stmt\JumpIf::__construct PHP Method

__construct() public method

public __construct ( Operand $cond, Block $if, Block $else, array $attributes = [] )
$cond PHPCfg\Operand
$if PHPCfg\Block
$else PHPCfg\Block
$attributes array
    public function __construct(Operand $cond, Block $if, Block $else, array $attributes = [])
    {
        parent::__construct($attributes);
        $this->if = $if;
        $this->else = $else;
        $this->cond = $this->addReadRef($cond);
    }