PHPSA\CompiledExpression::__construct PHP Method

__construct() public method

Construct new CompiledExpression to pass result
public __construct ( integer $type = self::UNKNOWN, mixed $value = null, Variable $variable = null )
$type integer
$value mixed
$variable Variable
    public function __construct($type = self::UNKNOWN, $value = null, Variable $variable = null)
    {
        $this->type = $type;
        $this->value = $value;
        $this->variable = $variable;
    }