1
0
mirror of https://github.com/danog/psalm.git synced 2024-12-14 18:36:58 +01:00
psalm/src/Psalm/Internal/Scope/SwitchScope.php
Matthew Brown da42be175f Apply PHPCS fixes
Fixes #1880
2019-07-05 16:27:53 -04:00

64 lines
1.1 KiB
PHP

<?php
namespace Psalm\Internal\Scope;
use PhpParser;
use Psalm\CodeLocation;
use Psalm\Internal\Clause;
use Psalm\Type;
/**
* @internal
*/
class SwitchScope
{
/**
* @var array<string, Type\Union>|null
*/
public $new_vars_in_scope = null;
/**
* @var array<string, bool>
*/
public $new_vars_possibly_in_scope = [];
/**
* @var array<string, Type\Union>|null
*/
public $redefined_vars = null;
/**
* @var array<string, Type\Union>|null
*/
public $possibly_redefined_vars = null;
/**
* @var array<PhpParser\Node\Stmt>
*/
public $leftover_statements = [];
/**
* @var PhpParser\Node\Expr|null
*/
public $leftover_case_equality_expr = null;
/**
* @var array<int, Clause>
*/
public $negated_clauses = [];
/**
* @var array<string, array<string, CodeLocation>>
*/
public $new_unreferenced_vars = [];
/**
* @var array<string, bool>|null
*/
public $new_assigned_var_ids = null;
/**
* @var array<string, bool>
*/
public $new_possibly_assigned_var_ids = [];
}