mirror of
https://github.com/danog/psalm.git
synced 2024-11-26 20:34:47 +01:00
Fix #4372 - count implicitly-used short-closure vars as used
This commit is contained in:
parent
d56ce1df00
commit
d7a0b718ec
@ -170,10 +170,23 @@ class ClosureAnalyzer extends FunctionLikeAnalyzer
|
||||
$traverser->traverse($stmt->getStmts());
|
||||
|
||||
foreach ($short_closure_visitor->getUsedVariables() as $use_var_id => $_) {
|
||||
$use_context->vars_in_scope[$use_var_id] =
|
||||
$context->hasVariable($use_var_id)
|
||||
? clone $context->vars_in_scope[$use_var_id]
|
||||
: Type::getMixed();
|
||||
if ($context->hasVariable($use_var_id)) {
|
||||
$use_context->vars_in_scope[$use_var_id] = clone $context->vars_in_scope[$use_var_id];
|
||||
|
||||
if ($statements_analyzer->data_flow_graph instanceof \Psalm\Internal\Codebase\VariableUseGraph) {
|
||||
$parent_nodes = $context->vars_in_scope[$use_var_id]->parent_nodes;
|
||||
|
||||
foreach ($parent_nodes as $parent_node) {
|
||||
$statements_analyzer->data_flow_graph->addPath(
|
||||
$parent_node,
|
||||
new DataFlowNode('closure-use', 'closure use', null),
|
||||
'closure-use'
|
||||
);
|
||||
}
|
||||
}
|
||||
} else {
|
||||
$use_context->vars_in_scope[$use_var_id] = Type::getMixed();
|
||||
}
|
||||
|
||||
$use_context->vars_possibly_in_scope[$use_var_id] = true;
|
||||
}
|
||||
|
@ -2197,6 +2197,12 @@ class UnusedVariableTest extends TestCase
|
||||
echo $b;
|
||||
}'
|
||||
],
|
||||
'arrowFunctionImplicitlyUsedVar' => [
|
||||
'<?php
|
||||
function test(Exception $e): callable {
|
||||
return fn() => $e->getMessage();
|
||||
}'
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user