mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
Fix #1985 - prevent complicatedExpressionException from breaking analysis
This commit is contained in:
parent
16a1dc8538
commit
50bd18c404
@ -989,8 +989,13 @@ class IfAnalyzer
|
||||
)
|
||||
);
|
||||
|
||||
try {
|
||||
$reconcilable_elseif_types = Algebra::getTruthsFromFormula($elseif_context->clauses);
|
||||
$negated_elseif_types = Algebra::getTruthsFromFormula(Algebra::negateFormula($elseif_clauses));
|
||||
} catch (\Psalm\Exception\ComplicatedExpressionException $e) {
|
||||
$reconcilable_elseif_types = [];
|
||||
$negated_elseif_types = [];
|
||||
}
|
||||
|
||||
$all_negated_vars = array_unique(
|
||||
array_merge(
|
||||
@ -1303,10 +1308,14 @@ class IfAnalyzer
|
||||
$outer_context->mergeExceptions($elseif_context);
|
||||
}
|
||||
|
||||
try {
|
||||
$if_scope->negated_clauses = array_merge(
|
||||
$if_scope->negated_clauses,
|
||||
Algebra::negateFormula($elseif_clauses)
|
||||
);
|
||||
} catch (\Psalm\Exception\ComplicatedExpressionException $e) {
|
||||
$if_scope->negated_clauses = [];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user