Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/vimeo/psalm/src/Psalm/Internal/Scope/SwitchScope.php')
-rw-r--r--vendor/vimeo/psalm/src/Psalm/Internal/Scope/SwitchScope.php53
1 files changed, 0 insertions, 53 deletions
diff --git a/vendor/vimeo/psalm/src/Psalm/Internal/Scope/SwitchScope.php b/vendor/vimeo/psalm/src/Psalm/Internal/Scope/SwitchScope.php
deleted file mode 100644
index 35bb99c..0000000
--- a/vendor/vimeo/psalm/src/Psalm/Internal/Scope/SwitchScope.php
+++ /dev/null
@@ -1,53 +0,0 @@
-<?php
-
-namespace Psalm\Internal\Scope;
-
-use PhpParser;
-use Psalm\Internal\Clause;
-use Psalm\Type\Union;
-
-/**
- * @internal
- */
-class SwitchScope
-{
- /**
- * @var array<string, Union>|null
- */
- public $new_vars_in_scope;
-
- /**
- * @var array<string, bool>
- */
- public $new_vars_possibly_in_scope = [];
-
- /**
- * @var array<string, Union>|null
- */
- public $redefined_vars;
-
- /**
- * @var array<string, Union>|null
- */
- public $possibly_redefined_vars;
-
- /**
- * @var array<PhpParser\Node\Stmt>
- */
- public $leftover_statements = [];
-
- /**
- * @var PhpParser\Node\Expr|null
- */
- public $leftover_case_equality_expr;
-
- /**
- * @var list<Clause>
- */
- public $negated_clauses = [];
-
- /**
- * @var array<string, bool>|null
- */
- public $new_assigned_var_ids;
-}