1
0
mirror of https://github.com/danog/psalm.git synced 2025-01-05 20:48:45 +01:00
psalm/src/Psalm/Internal/Scope/IfScope.php
2018-11-12 11:20:59 -05:00

91 lines
1.7 KiB
PHP

<?php
namespace Psalm\Internal\Scope;
use Psalm\CodeLocation;
use Psalm\Internal\Clause;
use Psalm\Type;
class IfScope
{
/**
* @var array<string, Type\Union>|null
*/
public $new_vars = null;
/**
* @var array<string, bool>
*/
public $new_vars_possibly_in_scope = [];
/**
* @var array<string, Type\Union>|null
*/
public $redefined_vars = null;
/**
* @var array<string, bool>|null
*/
public $assigned_var_ids = null;
/**
* @var array<string, bool>
*/
public $possibly_assigned_var_ids = [];
/**
* @var array<string, Type\Union>
*/
public $possibly_redefined_vars = [];
/**
* @var array<string, bool>
*/
public $updated_vars = [];
/**
* @var array<string, array<int, array<int, string>>>
*/
public $negated_types = [];
/**
* @var array<mixed, string>
*/
public $if_cond_changed_var_ids = [];
/**
* @var array<string, string>|null
*/
public $negatable_if_types = null;
/**
* @var array<int, Clause>
*/
public $negated_clauses = [];
/**
* These are the set of clauses that could be applied after the `if`
* statement, if the `if` statement contains branches with leaving statments,
* and the else leaves too
*
* @var array<int, Clause>
*/
public $reasonable_clauses = [];
/**
* Variables that were mixed, but are no longer
*
* @var array<string, Type\Union>|null
*/
public $possible_param_types = null;
/**
* @var string[]
*/
public $final_actions = [];
/**
* @var array<string, array<string, CodeLocation>>
*/
public $new_unreferenced_vars = [];
}