forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemoveUnusedAssignVariableRector.php
179 lines (153 loc) · 4.65 KB
/
RemoveUnusedAssignVariableRector.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<?php
declare(strict_types=1);
namespace Rector\DeadCode\Rector\Assign;
use PhpParser\Node;
use PhpParser\Node\Expr\Assign;
use PhpParser\Node\Expr\Variable;
use PHPStan\Analyser\Scope;
use Rector\Core\Rector\AbstractRector;
use Rector\DeadCode\NodeFinder\NextVariableUsageNodeFinder;
use Rector\DeadCode\NodeFinder\PreviousVariableAssignNodeFinder;
use Rector\DeadCode\SideEffect\SideEffectNodeDetector;
use Rector\NodeNestingScope\ScopeNestingComparator;
use Rector\NodeTypeResolver\Node\AttributeKey;
use Symplify\RuleDocGenerator\ValueObject\CodeSample\CodeSample;
use Symplify\RuleDocGenerator\ValueObject\RuleDefinition;
/**
* @see \Rector\Tests\DeadCode\Rector\Assign\RemoveUnusedAssignVariableRector\RemoveUnusedAssignVariableRectorTest
*/
final class RemoveUnusedAssignVariableRector extends AbstractRector
{
/**
* @var SideEffectNodeDetector
*/
private $sideEffectNodeDetector;
/**
* @var PreviousVariableAssignNodeFinder
*/
private $previousVariableAssignNodeFinder;
/**
* @var ScopeNestingComparator
*/
private $scopeNestingComparator;
/**
* @var NextVariableUsageNodeFinder
*/
private $nextVariableUsageNodeFinder;
public function __construct(
NextVariableUsageNodeFinder $nextVariableUsageNodeFinder,
PreviousVariableAssignNodeFinder $previousVariableAssignNodeFinder,
ScopeNestingComparator $scopeNestingComparator,
SideEffectNodeDetector $sideEffectNodeDetector
) {
$this->sideEffectNodeDetector = $sideEffectNodeDetector;
$this->previousVariableAssignNodeFinder = $previousVariableAssignNodeFinder;
$this->scopeNestingComparator = $scopeNestingComparator;
$this->nextVariableUsageNodeFinder = $nextVariableUsageNodeFinder;
}
/**
* @return array<class-string<Node>>
*/
public function getNodeTypes(): array
{
return [Assign::class];
}
public function getRuleDefinition(): RuleDefinition
{
return new RuleDefinition('Remove assigned unused variable', [
new CodeSample(
<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$value = $this->process();
}
public function process()
{
// something going on
return 5;
}
}
CODE_SAMPLE
,
<<<'CODE_SAMPLE'
class SomeClass
{
public function run()
{
$this->process();
}
public function process()
{
// something going on
return 5;
}
}
CODE_SAMPLE
),
]);
}
/**
* @param Assign $node
*/
public function refactor(Node $node): ?Node
{
if ($this->shouldSkipAssign($node)) {
return null;
}
if ($this->isVariableTypeInScope($node) && ! $this->isPreviousVariablePartOfOverridingAssign($node)) {
return null;
}
// is scalar assign? remove whole
if (! $this->sideEffectNodeDetector->detect($node->expr)) {
$this->removeNode($node);
return null;
}
return $node->expr;
}
private function shouldSkipAssign(Assign $assign): bool
{
if (! $assign->var instanceof Variable) {
return true;
}
// unable to resolve name
$variableName = $this->getName($assign->var);
if ($variableName === null) {
return true;
}
if ($this->isNestedAssign($assign)) {
return true;
}
$nextUsedVariable = $this->nextVariableUsageNodeFinder->find($assign);
return $nextUsedVariable !== null;
}
private function isVariableTypeInScope(Assign $assign): bool
{
$scope = $assign->getAttribute(AttributeKey::SCOPE);
if (! $scope instanceof Scope) {
return false;
}
/** @var string $variableName */
$variableName = $this->getName($assign->var);
return ! $scope->hasVariableType($variableName)
->no();
}
private function isPreviousVariablePartOfOverridingAssign(Assign $assign): bool
{
// is previous variable node as part of assign?
$previousVariableAssign = $this->previousVariableAssignNodeFinder->find($assign);
if (! $previousVariableAs#stanceof Node) {
return false;
}
return $this->scopeNestingComparator->areScopeNestingEqual($assign, $previousVariableAssign);
}
/**
* Nested assign, e.g "$oldValues = <$values> = 5;"
*/
private function isNestedAssign(Assign $assign): bool
{
$parent = $assign->getAttribute(AttributeKey::PARENT_NODE);
return $parent instanceof Assign;
}
}