2020-04-01 03:55:44 +02:00
|
|
|
<?php
|
|
|
|
|
2021-05-09 20:15:43 +00:00
|
|
|
declare (strict_types=1);
|
2020-04-01 03:55:44 +02:00
|
|
|
namespace Rector\NodeNestingScope\ValueObject;
|
|
|
|
|
2021-02-13 23:26:00 +01:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\Node\Expr\ArrowFunction;
|
|
|
|
use PhpParser\Node\Expr\Closure;
|
2020-10-12 16:34:28 +02:00
|
|
|
use PhpParser\Node\Expr\Match_;
|
2020-04-01 03:55:44 +02:00
|
|
|
use PhpParser\Node\FunctionLike;
|
|
|
|
use PhpParser\Node\Stmt\Case_;
|
|
|
|
use PhpParser\Node\Stmt\Catch_;
|
2021-02-13 23:26:00 +01:00
|
|
|
use PhpParser\Node\Stmt\ClassMethod;
|
2020-04-01 03:55:44 +02:00
|
|
|
use PhpParser\Node\Stmt\Do_;
|
|
|
|
use PhpParser\Node\Stmt\Else_;
|
|
|
|
use PhpParser\Node\Stmt\ElseIf_;
|
|
|
|
use PhpParser\Node\Stmt\For_;
|
|
|
|
use PhpParser\Node\Stmt\Foreach_;
|
2021-02-13 23:26:00 +01:00
|
|
|
use PhpParser\Node\Stmt\Function_;
|
2020-04-01 03:55:44 +02:00
|
|
|
use PhpParser\Node\Stmt\If_;
|
2020-10-12 16:34:28 +02:00
|
|
|
use PhpParser\Node\Stmt\Switch_;
|
2020-04-01 03:55:44 +02:00
|
|
|
use PhpParser\Node\Stmt\While_;
|
|
|
|
final class ControlStructure
|
|
|
|
{
|
|
|
|
/**
|
2021-02-23 02:25:34 +01:00
|
|
|
* @var array<class-string<FunctionLike>>
|
2021-02-13 23:26:00 +01:00
|
|
|
*/
|
2021-05-10 22:23:08 +00:00
|
|
|
public const RETURN_ISOLATING_SCOPE_NODE_TYPES = [\PhpParser\Node\Stmt\Function_::class, \PhpParser\Node\Stmt\ClassMethod::class, \PhpParser\Node\Expr\Closure::class, \PhpParser\Node\Expr\ArrowFunction::class];
|
2021-02-13 23:26:00 +01:00
|
|
|
/**
|
|
|
|
* @var array<class-string<Node>>
|
2020-04-01 03:55:44 +02:00
|
|
|
*/
|
2021-05-10 22:23:08 +00:00
|
|
|
public const BREAKING_SCOPE_NODE_TYPES = [\PhpParser\Node\Stmt\For_::class, \PhpParser\Node\Stmt\Foreach_::class, \PhpParser\Node\Stmt\If_::class, \PhpParser\Node\Stmt\While_::class, \PhpParser\Node\Stmt\Do_::class, \PhpParser\Node\Stmt\Else_::class, \PhpParser\Node\Stmt\ElseIf_::class, \PhpParser\Node\Stmt\Catch_::class, \PhpParser\Node\Stmt\Case_::class, \PhpParser\Node\FunctionLike::class];
|
2020-10-12 16:34:28 +02:00
|
|
|
/**
|
|
|
|
* These situations happens only if condition is met
|
2021-02-23 02:25:34 +01:00
|
|
|
* @var array<class-string<Node>>
|
2020-10-12 16:34:28 +02:00
|
|
|
*/
|
2021-05-10 22:23:08 +00:00
|
|
|
public const CONDITIONAL_NODE_SCOPE_TYPES = [\PhpParser\Node\Stmt\If_::class, \PhpParser\Node\Stmt\While_::class, \PhpParser\Node\Stmt\Do_::class, \PhpParser\Node\Stmt\Else_::class, \PhpParser\Node\Stmt\ElseIf_::class, \PhpParser\Node\Stmt\Catch_::class, \PhpParser\Node\Stmt\Case_::class, \PhpParser\Node\Expr\Match_::class, \PhpParser\Node\Stmt\Switch_::class, \PhpParser\Node\Stmt\Foreach_::class];
|
2020-04-01 03:55:44 +02:00
|
|
|
}
|