2019-08-27 04:16:06 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Internal\Scope;
|
|
|
|
|
|
|
|
use Psalm\Context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
class IfConditionalScope
|
|
|
|
{
|
|
|
|
public $if_context;
|
|
|
|
|
|
|
|
public $original_context;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, bool>
|
|
|
|
*/
|
|
|
|
public $cond_referenced_var_ids;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var array<string, bool>
|
|
|
|
*/
|
|
|
|
public $cond_assigned_var_ids;
|
|
|
|
|
2019-10-17 03:55:11 +02:00
|
|
|
/** @var list<\Psalm\Internal\Clause> */
|
2019-08-27 04:54:54 +02:00
|
|
|
public $entry_clauses;
|
|
|
|
|
2019-08-27 04:16:06 +02:00
|
|
|
/**
|
|
|
|
* @param array<string, bool> $cond_referenced_var_ids
|
|
|
|
* @param array<string, bool> $cond_assigned_var_ids
|
2019-10-17 03:55:11 +02:00
|
|
|
* @param list<\Psalm\Internal\Clause> $entry_clauses
|
2019-08-27 04:16:06 +02:00
|
|
|
*/
|
|
|
|
public function __construct(
|
|
|
|
Context $if_context,
|
|
|
|
Context $original_context,
|
|
|
|
array $cond_referenced_var_ids,
|
2019-08-27 04:54:54 +02:00
|
|
|
array $cond_assigned_var_ids,
|
|
|
|
array $entry_clauses
|
2019-08-27 04:16:06 +02:00
|
|
|
) {
|
|
|
|
$this->if_context = $if_context;
|
|
|
|
$this->original_context = $original_context;
|
|
|
|
$this->cond_referenced_var_ids = $cond_referenced_var_ids;
|
|
|
|
$this->cond_assigned_var_ids = $cond_assigned_var_ids;
|
2019-08-27 04:54:54 +02:00
|
|
|
$this->entry_clauses = $entry_clauses;
|
2019-08-27 04:16:06 +02:00
|
|
|
}
|
|
|
|
}
|