2018-01-14 18:09:40 +01:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Checker\Statements\Expression;
|
|
|
|
|
|
|
|
use PhpParser;
|
2018-05-07 20:52:45 +02:00
|
|
|
use Psalm\Checker\AlgebraChecker;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Checker\FunctionLikeChecker;
|
|
|
|
use Psalm\Checker\Statements\Expression\Assignment\ArrayAssignmentChecker;
|
|
|
|
use Psalm\Checker\Statements\ExpressionChecker;
|
|
|
|
use Psalm\Checker\StatementsChecker;
|
|
|
|
use Psalm\Checker\TypeChecker;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
2018-03-18 21:39:34 +01:00
|
|
|
use Psalm\Issue\FalseOperand;
|
2018-03-18 19:42:23 +01:00
|
|
|
use Psalm\Issue\ImplicitToStringCast;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Issue\InvalidOperand;
|
|
|
|
use Psalm\Issue\MixedOperand;
|
|
|
|
use Psalm\Issue\NullOperand;
|
2018-03-18 21:39:34 +01:00
|
|
|
use Psalm\Issue\PossiblyFalseOperand;
|
|
|
|
use Psalm\Issue\PossiblyInvalidOperand;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Issue\PossiblyNullOperand;
|
|
|
|
use Psalm\IssueBuffer;
|
|
|
|
use Psalm\StatementsSource;
|
|
|
|
use Psalm\Type;
|
2018-05-07 07:26:06 +02:00
|
|
|
use Psalm\Type\Algebra;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\ObjectLike;
|
|
|
|
use Psalm\Type\Atomic\TArray;
|
2018-03-08 20:04:00 +01:00
|
|
|
use Psalm\Type\Atomic\TFalse;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\TFloat;
|
2018-04-20 16:52:23 +02:00
|
|
|
use Psalm\Type\Atomic\TGenericParam;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\TInt;
|
2018-05-09 01:11:18 +02:00
|
|
|
use Psalm\Type\Atomic\TLiteralString;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\TMixed;
|
2018-05-05 18:59:30 +02:00
|
|
|
use Psalm\Type\Atomic\TNamedObject;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Atomic\TNull;
|
2018-02-16 01:50:50 +01:00
|
|
|
use Psalm\Type\Atomic\TNumeric;
|
2018-01-14 18:09:40 +01:00
|
|
|
use Psalm\Type\Reconciler;
|
2018-05-20 01:44:03 +02:00
|
|
|
use Psalm\Type\TypeCombination;
|
2018-05-09 01:11:18 +02:00
|
|
|
use Psalm\Type\Union;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
class BinaryOpChecker
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Expr\BinaryOp $stmt
|
|
|
|
* @param Context $context
|
|
|
|
* @param int $nesting
|
|
|
|
*
|
|
|
|
* @return false|null
|
|
|
|
*/
|
|
|
|
public static function analyze(
|
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Expr\BinaryOp $stmt,
|
|
|
|
Context $context,
|
|
|
|
$nesting = 0
|
|
|
|
) {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat && $nesting > 20) {
|
|
|
|
// ignore deeply-nested string concatenation
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanAnd ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalAnd
|
|
|
|
) {
|
2018-05-07 20:52:45 +02:00
|
|
|
$left_clauses = Algebra::getFormula(
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt->left,
|
|
|
|
$statements_checker->getFQCLN(),
|
|
|
|
$statements_checker
|
|
|
|
);
|
|
|
|
|
|
|
|
$pre_referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$context->referenced_var_ids = [];
|
2018-02-08 20:46:06 +01:00
|
|
|
$original_vars_in_scope = $context->vars_in_scope;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$pre_assigned_var_ids = $context->assigned_var_ids;
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->left, $context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$new_referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$context->referenced_var_ids = array_merge($pre_referenced_var_ids, $new_referenced_var_ids);
|
|
|
|
|
|
|
|
$new_assigned_var_ids = array_diff_key($context->assigned_var_ids, $pre_assigned_var_ids);
|
|
|
|
|
|
|
|
$new_referenced_var_ids = array_diff_key($new_referenced_var_ids, $new_assigned_var_ids);
|
|
|
|
|
2018-02-08 20:46:06 +01:00
|
|
|
// remove all newly-asserted var ids too
|
|
|
|
$new_referenced_var_ids = array_filter(
|
|
|
|
$new_referenced_var_ids,
|
|
|
|
/**
|
|
|
|
* @param string $var_id
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
function ($var_id) use ($original_vars_in_scope) {
|
|
|
|
return isset($original_vars_in_scope[$var_id]);
|
|
|
|
},
|
|
|
|
ARRAY_FILTER_USE_KEY
|
|
|
|
);
|
|
|
|
|
2018-05-07 20:52:45 +02:00
|
|
|
$simplified_clauses = Algebra::simplifyCNF(array_merge($context->clauses, $left_clauses));
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$left_type_assertions = Algebra::getTruthsFromFormula($simplified_clauses);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$changed_var_ids = [];
|
|
|
|
|
|
|
|
// while in an and, we allow scope to boil over to support
|
|
|
|
// statements of the form if ($x && $x->foo())
|
|
|
|
$op_vars_in_scope = Reconciler::reconcileKeyedTypes(
|
|
|
|
$left_type_assertions,
|
|
|
|
$context->vars_in_scope,
|
|
|
|
$changed_var_ids,
|
|
|
|
$new_referenced_var_ids,
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
|
|
|
$op_context = clone $context;
|
|
|
|
$op_context->vars_in_scope = $op_vars_in_scope;
|
|
|
|
|
|
|
|
$op_context->removeReconciledClauses($changed_var_ids);
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->right, $op_context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$op_context->referenced_var_ids,
|
|
|
|
$context->referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($context->collect_references) {
|
2018-01-28 23:28:34 +01:00
|
|
|
$context->unreferenced_vars = $op_context->unreferenced_vars;
|
2018-01-25 07:04:26 +01:00
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
foreach ($op_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if (isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes($context->vars_in_scope[$var_id], $type);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($context->inside_conditional) {
|
|
|
|
foreach ($op_context->vars_in_scope as $var => $type) {
|
|
|
|
if (!isset($context->vars_in_scope[$var])) {
|
|
|
|
$context->vars_in_scope[$var] = $type;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->updateChecks($op_context);
|
|
|
|
|
|
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
|
|
$op_context->vars_possibly_in_scope,
|
|
|
|
$context->vars_possibly_in_scope
|
|
|
|
);
|
|
|
|
|
|
|
|
$context->assigned_var_ids = array_merge(
|
|
|
|
$context->assigned_var_ids,
|
|
|
|
$op_context->assigned_var_ids
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalOr
|
|
|
|
) {
|
|
|
|
$pre_referenced_var_ids = $context->referenced_var_ids;
|
|
|
|
$context->referenced_var_ids = [];
|
|
|
|
|
|
|
|
$pre_assigned_var_ids = $context->assigned_var_ids;
|
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
$pre_op_context = clone $context;
|
|
|
|
$pre_op_context->parent_context = $context;
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->left, $pre_op_context) === false) {
|
2018-01-14 18:09:40 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
foreach ($pre_op_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if (!isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = clone $type;
|
|
|
|
} else {
|
|
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
|
|
|
$context->vars_in_scope[$var_id],
|
|
|
|
$type
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
$new_referenced_var_ids = $pre_op_context->referenced_var_ids;
|
|
|
|
$pre_op_context->referenced_var_ids = array_merge($pre_referenced_var_ids, $new_referenced_var_ids);
|
|
|
|
|
|
|
|
$new_assigned_var_ids = array_diff_key($pre_op_context->assigned_var_ids, $pre_assigned_var_ids);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$new_referenced_var_ids = array_diff_key($new_referenced_var_ids, $new_assigned_var_ids);
|
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$left_clauses = Algebra::getFormula(
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt->left,
|
|
|
|
$statements_checker->getFQCLN(),
|
|
|
|
$statements_checker
|
|
|
|
);
|
|
|
|
|
2018-05-07 20:52:45 +02:00
|
|
|
$negated_left_clauses = Algebra::negateFormula($left_clauses);
|
|
|
|
|
|
|
|
$clauses_for_right_analysis = Algebra::simplifyCNF(
|
2018-01-14 18:09:40 +01:00
|
|
|
array_merge(
|
2018-09-10 06:13:59 +02:00
|
|
|
$pre_op_context->clauses,
|
2018-05-07 20:52:45 +02:00
|
|
|
$negated_left_clauses
|
2018-01-14 18:09:40 +01:00
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-05-07 20:52:45 +02:00
|
|
|
$negated_type_assertions = Algebra::getTruthsFromFormula($clauses_for_right_analysis);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$changed_var_ids = [];
|
|
|
|
|
|
|
|
// while in an or, we allow scope to boil over to support
|
|
|
|
// statements of the form if ($x === null || $x->foo())
|
|
|
|
$op_vars_in_scope = Reconciler::reconcileKeyedTypes(
|
|
|
|
$negated_type_assertions,
|
2018-09-10 06:13:59 +02:00
|
|
|
$pre_op_context->vars_in_scope,
|
2018-01-14 18:09:40 +01:00
|
|
|
$changed_var_ids,
|
|
|
|
$new_referenced_var_ids,
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
$op_context = clone $pre_op_context;
|
2018-05-07 20:52:45 +02:00
|
|
|
$op_context->clauses = $clauses_for_right_analysis;
|
2018-01-14 18:09:40 +01:00
|
|
|
$op_context->vars_in_scope = $op_vars_in_scope;
|
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
if ($changed_var_ids) {
|
|
|
|
$op_context->removeReconciledClauses($changed_var_ids);
|
|
|
|
$context->removeReconciledClauses($changed_var_ids);
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->right, $op_context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!($stmt->right instanceof PhpParser\Node\Expr\Exit_)) {
|
|
|
|
foreach ($op_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if (isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes(
|
|
|
|
$context->vars_in_scope[$var_id],
|
|
|
|
$type
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} elseif ($stmt->left instanceof PhpParser\Node\Expr\Assign) {
|
|
|
|
$var_id = ExpressionChecker::getVarId($stmt->left->var, $context->self);
|
|
|
|
|
2018-09-10 06:13:59 +02:00
|
|
|
if ($var_id && isset($pre_op_context->vars_in_scope[$var_id])) {
|
2018-01-14 18:09:40 +01:00
|
|
|
$left_inferred_reconciled = Reconciler::reconcileTypes(
|
|
|
|
'!falsy',
|
2018-09-10 06:13:59 +02:00
|
|
|
$pre_op_context->vars_in_scope[$var_id],
|
2018-01-14 18:09:40 +01:00
|
|
|
'',
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt->left),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
2018-02-06 19:40:28 +01:00
|
|
|
$context->vars_in_scope[$var_id] = $left_inferred_reconciled;
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($context->inside_conditional) {
|
|
|
|
$context->updateChecks($op_context);
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$op_context->referenced_var_ids,
|
|
|
|
$context->referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2018-06-07 21:03:50 +02:00
|
|
|
$context->assigned_var_ids = array_merge(
|
|
|
|
$context->assigned_var_ids,
|
|
|
|
$op_context->assigned_var_ids
|
|
|
|
);
|
|
|
|
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($context->collect_references) {
|
|
|
|
$context->unreferenced_vars = array_intersect_key(
|
|
|
|
$op_context->unreferenced_vars,
|
|
|
|
$context->unreferenced_vars
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$context->vars_possibly_in_scope = array_merge(
|
|
|
|
$op_context->vars_possibly_in_scope,
|
|
|
|
$context->vars_possibly_in_scope
|
|
|
|
);
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat) {
|
|
|
|
$stmt->inferredType = Type::getString();
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->left, $context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->right, $context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Coalesce) {
|
|
|
|
$t_if_context = clone $context;
|
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$if_clauses = Algebra::getFormula(
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt,
|
|
|
|
$statements_checker->getFQCLN(),
|
|
|
|
$statements_checker
|
|
|
|
);
|
|
|
|
|
2018-08-24 22:48:14 +02:00
|
|
|
$mixed_var_ids = [];
|
2018-05-31 00:56:44 +02:00
|
|
|
|
|
|
|
foreach ($context->vars_in_scope as $var_id => $type) {
|
|
|
|
if ($type->isMixed()) {
|
|
|
|
$mixed_var_ids[] = $var_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($context->vars_possibly_in_scope as $var_id => $_) {
|
|
|
|
if (!isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$mixed_var_ids[] = $var_id;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$if_clauses = array_values(
|
|
|
|
array_map(
|
|
|
|
/**
|
|
|
|
* @return \Psalm\Clause
|
|
|
|
*/
|
|
|
|
function (\Psalm\Clause $c) use ($mixed_var_ids) {
|
|
|
|
$keys = array_keys($c->possibilities);
|
|
|
|
|
|
|
|
foreach ($keys as $key) {
|
|
|
|
foreach ($mixed_var_ids as $mixed_var_id) {
|
|
|
|
if (preg_match('/^' . preg_quote($mixed_var_id, '/') . '(\[|-)/', $key)) {
|
|
|
|
return new \Psalm\Clause([], true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return $c;
|
|
|
|
},
|
|
|
|
$if_clauses
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$ternary_clauses = Algebra::simplifyCNF(array_merge($context->clauses, $if_clauses));
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$negated_clauses = Algebra::negateFormula($if_clauses);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$negated_if_types = Algebra::getTruthsFromFormula($negated_clauses);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-05-07 07:26:06 +02:00
|
|
|
$reconcilable_if_types = Algebra::getTruthsFromFormula($ternary_clauses);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$changed_var_ids = [];
|
|
|
|
|
|
|
|
$t_if_vars_in_scope_reconciled = Reconciler::reconcileKeyedTypes(
|
|
|
|
$reconcilable_if_types,
|
|
|
|
$t_if_context->vars_in_scope,
|
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt->left),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
|
|
|
$t_if_context->vars_in_scope = $t_if_vars_in_scope_reconciled;
|
2018-05-31 21:07:03 +02:00
|
|
|
$t_if_context->inside_isset = true;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->left, $t_if_context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-05-31 21:07:03 +02:00
|
|
|
$t_if_context->inside_isset = false;
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
foreach ($t_if_context->vars_in_scope as $var_id => $type) {
|
|
|
|
if (isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = Type::combineUnionTypes($context->vars_in_scope[$var_id], $type);
|
|
|
|
} else {
|
|
|
|
$context->vars_in_scope[$var_id] = $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$context->referenced_var_ids,
|
|
|
|
$t_if_context->referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($context->collect_references) {
|
|
|
|
$context->unreferenced_vars = array_intersect_key(
|
|
|
|
$t_if_context->unreferenced_vars,
|
|
|
|
$context->unreferenced_vars
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$t_else_context = clone $context;
|
|
|
|
|
|
|
|
if ($negated_if_types) {
|
|
|
|
$t_else_vars_in_scope_reconciled = Reconciler::reconcileKeyedTypes(
|
|
|
|
$negated_if_types,
|
|
|
|
$t_else_context->vars_in_scope,
|
|
|
|
$changed_var_ids,
|
|
|
|
[],
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt->right),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
|
|
|
$t_else_context->vars_in_scope = $t_else_vars_in_scope_reconciled;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->right, $t_else_context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$context->referenced_var_ids = array_merge(
|
|
|
|
$context->referenced_var_ids,
|
|
|
|
$t_else_context->referenced_var_ids
|
|
|
|
);
|
|
|
|
|
2018-01-25 07:04:26 +01:00
|
|
|
if ($context->collect_references) {
|
|
|
|
$context->unreferenced_vars = array_intersect_key(
|
|
|
|
$t_else_context->unreferenced_vars,
|
|
|
|
$context->unreferenced_vars
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$lhs_type = null;
|
|
|
|
|
|
|
|
if (isset($stmt->left->inferredType)) {
|
|
|
|
$if_return_type_reconciled = Reconciler::reconcileTypes(
|
|
|
|
'!null',
|
|
|
|
$stmt->left->inferredType,
|
|
|
|
'',
|
|
|
|
$statements_checker,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $stmt),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
);
|
|
|
|
|
|
|
|
$lhs_type = $if_return_type_reconciled;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$lhs_type || !isset($stmt->right->inferredType)) {
|
|
|
|
$stmt->inferredType = Type::getMixed();
|
|
|
|
} else {
|
|
|
|
$stmt->inferredType = Type::combineUnionTypes($lhs_type, $stmt->right->inferredType);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($stmt->left instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
|
|
if (self::analyze($statements_checker, $stmt->left, $context, ++$nesting) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->left, $context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt->right instanceof PhpParser\Node\Expr\BinaryOp) {
|
|
|
|
if (self::analyze($statements_checker, $stmt->right, $context, ++$nesting) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (ExpressionChecker::analyze($statements_checker, $stmt->right, $context) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// let's do some fun type assignment
|
|
|
|
if (isset($stmt->left->inferredType) && isset($stmt->right->inferredType)) {
|
2018-04-17 00:19:18 +02:00
|
|
|
if ($stmt->left->inferredType->hasString()
|
|
|
|
&& $stmt->right->inferredType->hasString()
|
|
|
|
&& ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseOr
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseXor
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseAnd
|
|
|
|
)
|
|
|
|
) {
|
|
|
|
$stmt->inferredType = Type::getString();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Plus
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Minus
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Mod
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Mul
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Pow
|
|
|
|
|| (($stmt->left->inferredType->hasInt() || $stmt->right->inferredType->hasInt())
|
|
|
|
&& ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseOr
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseXor
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseAnd
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\ShiftLeft
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\ShiftRight
|
|
|
|
)
|
|
|
|
)
|
2018-01-14 18:09:40 +01:00
|
|
|
) {
|
|
|
|
self::analyzeNonDivArithmenticOp(
|
|
|
|
$statements_checker,
|
|
|
|
$stmt->left,
|
|
|
|
$stmt->right,
|
|
|
|
$stmt,
|
|
|
|
$result_type,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($result_type) {
|
|
|
|
$stmt->inferredType = $result_type;
|
|
|
|
}
|
2018-05-28 21:31:20 +02:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BitwiseXor
|
|
|
|
&& ($stmt->left->inferredType->hasBool() || $stmt->right->inferredType->hasBool())
|
|
|
|
) {
|
|
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalXor
|
|
|
|
&& ($stmt->left->inferredType->hasBool() || $stmt->right->inferredType->hasBool())
|
|
|
|
) {
|
|
|
|
$stmt->inferredType = Type::getBool();
|
2018-01-14 18:09:40 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Div) {
|
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
|
|
|
if ($project_checker->infer_types_from_usage
|
|
|
|
&& isset($stmt->left->inferredType)
|
|
|
|
&& isset($stmt->right->inferredType)
|
|
|
|
&& ($stmt->left->inferredType->isMixed() || $stmt->right->inferredType->isMixed())
|
|
|
|
) {
|
|
|
|
$source_checker = $statements_checker->getSource();
|
|
|
|
|
|
|
|
if ($source_checker instanceof FunctionLikeChecker) {
|
|
|
|
$function_storage = $source_checker->getFunctionLikeStorage($statements_checker);
|
|
|
|
|
|
|
|
$context->inferType($stmt->left, $function_storage, new Type\Union([new TInt, new TFloat]));
|
|
|
|
$context->inferType($stmt->right, $function_storage, new Type\Union([new TInt, new TFloat]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-05 19:14:59 +02:00
|
|
|
self::analyzeNonDivArithmenticOp(
|
|
|
|
$statements_checker,
|
|
|
|
$stmt->left,
|
|
|
|
$stmt->right,
|
|
|
|
$stmt,
|
|
|
|
$result_type,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($result_type) {
|
|
|
|
if ($result_type->hasInt()) {
|
|
|
|
$result_type->addType(new TFloat);
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = $result_type;
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Concat) {
|
|
|
|
self::analyzeConcatOp(
|
|
|
|
$statements_checker,
|
|
|
|
$stmt->left,
|
|
|
|
$stmt->right,
|
|
|
|
$context,
|
|
|
|
$result_type
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($result_type) {
|
|
|
|
$stmt->inferredType = $result_type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanAnd
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\BooleanOr
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalAnd
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\LogicalOr
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Equal
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\NotEqual
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Identical
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\NotIdentical
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Greater
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\GreaterOrEqual
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\Smaller
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BinaryOp\SmallerOrEqual
|
|
|
|
) {
|
|
|
|
$stmt->inferredType = Type::getBool();
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\BinaryOp\Spaceship) {
|
|
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-21 18:44:46 +01:00
|
|
|
* @param StatementsSource|null $statements_source
|
2018-01-14 18:09:40 +01:00
|
|
|
* @param PhpParser\Node\Expr $left
|
|
|
|
* @param PhpParser\Node\Expr $right
|
|
|
|
* @param PhpParser\Node $parent
|
|
|
|
* @param Type\Union|null &$result_type
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function analyzeNonDivArithmenticOp(
|
2018-01-21 18:44:46 +01:00
|
|
|
$statements_source,
|
2018-01-14 18:09:40 +01:00
|
|
|
PhpParser\Node\Expr $left,
|
|
|
|
PhpParser\Node\Expr $right,
|
|
|
|
PhpParser\Node $parent,
|
|
|
|
Type\Union &$result_type = null,
|
|
|
|
Context $context = null
|
|
|
|
) {
|
2018-01-21 18:44:46 +01:00
|
|
|
$project_checker = $statements_source
|
|
|
|
? $statements_source->getFileChecker()->project_checker
|
|
|
|
: null;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-02-04 00:52:35 +01:00
|
|
|
$codebase = $project_checker ? $project_checker->codebase : null;
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$left_type = isset($left->inferredType) ? $left->inferredType : null;
|
|
|
|
$right_type = isset($right->inferredType) ? $right->inferredType : null;
|
|
|
|
$config = Config::getInstance();
|
|
|
|
|
2018-01-21 18:44:46 +01:00
|
|
|
if ($project_checker
|
|
|
|
&& $project_checker->infer_types_from_usage
|
|
|
|
&& $statements_source
|
2018-01-14 18:09:40 +01:00
|
|
|
&& $context
|
|
|
|
&& $left_type
|
|
|
|
&& $right_type
|
2018-06-09 05:54:07 +02:00
|
|
|
&& ($left_type->isVanillaMixed() || $right_type->isVanillaMixed())
|
2018-05-07 07:26:06 +02:00
|
|
|
&& ($left_type->hasDefinitelyNumericType() || $right_type->hasDefinitelyNumericType())
|
2018-01-14 18:09:40 +01:00
|
|
|
) {
|
|
|
|
$source_checker = $statements_source->getSource();
|
|
|
|
if ($source_checker instanceof FunctionLikeChecker
|
|
|
|
&& $statements_source instanceof StatementsChecker
|
|
|
|
) {
|
|
|
|
$function_storage = $source_checker->getFunctionLikeStorage($statements_source);
|
|
|
|
|
|
|
|
$context->inferType($left, $function_storage, new Type\Union([new TInt, new TFloat]));
|
|
|
|
$context->inferType($right, $function_storage, new Type\Union([new TInt, new TFloat]));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type && $right_type) {
|
2018-06-18 19:16:51 +02:00
|
|
|
if ($left_type->isNull()) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new NullOperand(
|
|
|
|
'Left operand cannot be null',
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-08 20:04:00 +01:00
|
|
|
if ($left_type->isNullable() && !$left_type->ignore_nullable_issues) {
|
2018-01-21 18:44:46 +01:00
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
2018-01-14 18:09:40 +01:00
|
|
|
new PossiblyNullOperand(
|
|
|
|
'Left operand cannot be nullable, got ' . $left_type,
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-06-18 19:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($right_type->isNull()) {
|
2018-01-21 18:44:46 +01:00
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
2018-01-14 18:09:40 +01:00
|
|
|
new NullOperand(
|
2018-06-18 19:16:51 +02:00
|
|
|
'Right operand cannot be null',
|
|
|
|
new CodeLocation($statements_source, $right)
|
2018-01-14 18:09:40 +01:00
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-07-04 01:52:40 +02:00
|
|
|
if ($right_type->isNullable() && !$right_type->ignore_nullable_issues) {
|
2018-01-21 18:44:46 +01:00
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
2018-01-14 18:09:40 +01:00
|
|
|
new PossiblyNullOperand(
|
|
|
|
'Right operand cannot be nullable, got ' . $right_type,
|
|
|
|
new CodeLocation($statements_source, $right)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-06-18 19:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type->isFalse()) {
|
2018-01-21 18:44:46 +01:00
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
2018-06-18 19:16:51 +02:00
|
|
|
new FalseOperand(
|
|
|
|
'Left operand cannot be null',
|
|
|
|
new CodeLocation($statements_source, $left)
|
2018-01-14 18:09:40 +01:00
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($left_type->isFalsable() && !$left_type->ignore_falsable_issues) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new PossiblyFalseOperand(
|
|
|
|
'Left operand cannot be falsable, got ' . $left_type,
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-06-18 19:16:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($right_type->isFalse()) {
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new FalseOperand(
|
2018-06-18 19:16:51 +02:00
|
|
|
'Right operand cannot be false',
|
|
|
|
new CodeLocation($statements_source, $right)
|
2018-03-18 21:39:34 +01:00
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($right_type->isFalsable() && !$right_type->ignore_falsable_issues) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new PossiblyFalseOperand(
|
|
|
|
'Right operand cannot be falsable, got ' . $right_type,
|
|
|
|
new CodeLocation($statements_source, $right)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$invalid_left_messages = [];
|
|
|
|
$invalid_right_messages = [];
|
|
|
|
$has_valid_left_operand = false;
|
|
|
|
$has_valid_right_operand = false;
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
foreach ($left_type->getTypes() as $left_type_part) {
|
|
|
|
foreach ($right_type->getTypes() as $right_type_part) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$candidate_result_type = self::analyzeNonDivOperands(
|
|
|
|
$statements_source,
|
|
|
|
$codebase,
|
2018-05-07 07:26:06 +02:00
|
|
|
$config,
|
|
|
|
$context,
|
2018-05-06 18:04:38 +02:00
|
|
|
$left,
|
|
|
|
$right,
|
|
|
|
$parent,
|
|
|
|
$left_type_part,
|
|
|
|
$right_type_part,
|
|
|
|
$invalid_left_messages,
|
|
|
|
$invalid_right_messages,
|
|
|
|
$has_valid_left_operand,
|
|
|
|
$has_valid_right_operand,
|
|
|
|
$result_type
|
|
|
|
);
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-05-06 18:04:38 +02:00
|
|
|
if ($candidate_result_type) {
|
|
|
|
$result_type = $candidate_result_type;
|
2018-01-14 18:09:40 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-18 21:39:34 +01:00
|
|
|
|
|
|
|
if ($invalid_left_messages && $statements_source) {
|
|
|
|
$first_left_message = $invalid_left_messages[0];
|
|
|
|
|
|
|
|
if ($has_valid_left_operand) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new PossiblyInvalidOperand(
|
|
|
|
$first_left_message,
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
$first_left_message,
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($invalid_right_messages && $statements_source) {
|
2018-03-18 21:46:26 +01:00
|
|
|
$first_right_message = $invalid_right_messages[0];
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($has_valid_right_operand) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new PossiblyInvalidOperand(
|
2018-03-18 21:46:26 +01:00
|
|
|
$first_right_message,
|
2018-03-18 21:39:34 +01:00
|
|
|
new CodeLocation($statements_source, $right)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
2018-03-18 21:46:26 +01:00
|
|
|
$first_right_message,
|
2018-03-18 21:39:34 +01:00
|
|
|
new CodeLocation($statements_source, $right)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-06 18:04:38 +02:00
|
|
|
/**
|
|
|
|
* @param StatementsSource|null $statements_source
|
|
|
|
* @param \Psalm\Codebase|null $codebase
|
2018-05-07 07:26:06 +02:00
|
|
|
* @param Context|null $context
|
2018-05-06 18:04:38 +02:00
|
|
|
* @param string[] &$invalid_left_messages
|
|
|
|
* @param string[] &$invalid_right_messages
|
|
|
|
* @param bool &$has_valid_left_operand
|
|
|
|
* @param bool &$has_valid_right_operand
|
|
|
|
*
|
|
|
|
* @return Type\Union|null
|
|
|
|
*/
|
|
|
|
public static function analyzeNonDivOperands(
|
|
|
|
$statements_source,
|
|
|
|
$codebase,
|
2018-05-07 07:26:06 +02:00
|
|
|
Config $config,
|
|
|
|
$context,
|
2018-05-06 18:04:38 +02:00
|
|
|
PhpParser\Node\Expr $left,
|
|
|
|
PhpParser\Node\Expr $right,
|
|
|
|
PhpParser\Node $parent,
|
|
|
|
Type\Atomic $left_type_part,
|
|
|
|
Type\Atomic $right_type_part,
|
|
|
|
array &$invalid_left_messages,
|
|
|
|
array &$invalid_right_messages,
|
|
|
|
&$has_valid_left_operand,
|
|
|
|
&$has_valid_right_operand,
|
|
|
|
Type\Union &$result_type = null
|
|
|
|
) {
|
|
|
|
if ($left_type_part instanceof TNull || $right_type_part instanceof TNull) {
|
|
|
|
// null case is handled above
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TFalse || $right_type_part instanceof TFalse) {
|
|
|
|
// null case is handled above
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TMixed
|
|
|
|
|| $right_type_part instanceof TMixed
|
|
|
|
|| $left_type_part instanceof TGenericParam
|
|
|
|
|| $right_type_part instanceof TGenericParam
|
|
|
|
) {
|
|
|
|
if ($statements_source && $codebase) {
|
2018-05-30 22:19:18 +02:00
|
|
|
$codebase->analyzer->incrementMixedCount($statements_source->getFilePath());
|
2018-05-06 18:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TMixed || $left_type_part instanceof TGenericParam) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Left operand cannot be mixed',
|
|
|
|
new CodeLocation($statements_source, $left)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Right operand cannot be mixed',
|
|
|
|
new CodeLocation($statements_source, $right)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TMixed
|
|
|
|
&& $left_type_part->from_isset
|
|
|
|
&& $parent instanceof PhpParser\Node\Expr\AssignOp\Plus
|
|
|
|
&& !$right_type_part instanceof TMixed
|
|
|
|
) {
|
|
|
|
$result_type_member = new Type\Union([$right_type_part]);
|
|
|
|
|
|
|
|
if (!$result_type) {
|
|
|
|
$result_type = $result_type_member;
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes($result_type_member, $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$from_isset = (!($left_type_part instanceof TMixed) || $left_type_part->from_isset)
|
|
|
|
&& (!($right_type_part instanceof TMixed) || $right_type_part->from_isset);
|
|
|
|
|
|
|
|
$result_type = Type::getMixed($from_isset);
|
|
|
|
|
|
|
|
return $result_type;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($statements_source && $codebase) {
|
2018-05-30 22:19:18 +02:00
|
|
|
$codebase->analyzer->incrementNonMixedCount($statements_source->getFilePath());
|
2018-05-06 18:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TArray
|
|
|
|
|| $right_type_part instanceof TArray
|
|
|
|
|| $left_type_part instanceof ObjectLike
|
|
|
|
|| $right_type_part instanceof ObjectLike
|
|
|
|
) {
|
|
|
|
if ((!$right_type_part instanceof TArray && !$right_type_part instanceof ObjectLike)
|
|
|
|
|| (!$left_type_part instanceof TArray && !$left_type_part instanceof ObjectLike)
|
|
|
|
) {
|
|
|
|
if (!$left_type_part instanceof TArray && !$left_type_part instanceof ObjectLike) {
|
|
|
|
$invalid_left_messages[] = 'Cannot add an array to a non-array ' . $left_type_part;
|
|
|
|
} else {
|
|
|
|
$invalid_right_messages[] = 'Cannot add an array to a non-array ' . $right_type_part;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TArray || $left_type_part instanceof ObjectLike) {
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
} elseif ($right_type_part instanceof TArray || $right_type_part instanceof ObjectLike) {
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result_type = Type::getArray();
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
if ($left_type_part instanceof ObjectLike && $right_type_part instanceof ObjectLike) {
|
|
|
|
$properties = $left_type_part->properties + $right_type_part->properties;
|
|
|
|
|
|
|
|
$result_type_member = new Type\Union([new ObjectLike($properties)]);
|
|
|
|
} else {
|
2018-05-20 01:44:03 +02:00
|
|
|
$result_type_member = TypeCombination::combineTypes([$left_type_part, $right_type_part]);
|
2018-05-06 18:04:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!$result_type) {
|
|
|
|
$result_type = $result_type_member;
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes($result_type_member, $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left instanceof PhpParser\Node\Expr\ArrayDimFetch
|
|
|
|
&& $context
|
|
|
|
&& $statements_source instanceof StatementsChecker
|
|
|
|
) {
|
|
|
|
ArrayAssignmentChecker::updateArrayType(
|
|
|
|
$statements_source,
|
|
|
|
$left,
|
|
|
|
$result_type,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($left_type_part instanceof TNamedObject && strtolower($left_type_part->value) === 'gmp')
|
|
|
|
|| ($right_type_part instanceof TNamedObject && strtolower($right_type_part->value) === 'gmp')
|
|
|
|
) {
|
|
|
|
if ((($left_type_part instanceof TNamedObject
|
|
|
|
&& strtolower($left_type_part->value) === 'gmp')
|
|
|
|
&& (($right_type_part instanceof TNamedObject
|
|
|
|
&& strtolower($right_type_part->value) === 'gmp')
|
|
|
|
|| ($right_type_part->isNumericType() || $right_type_part instanceof TMixed)))
|
|
|
|
|| (($right_type_part instanceof TNamedObject
|
|
|
|
&& strtolower($right_type_part->value) === 'gmp')
|
|
|
|
&& (($left_type_part instanceof TNamedObject
|
|
|
|
&& strtolower($left_type_part->value) === 'gmp')
|
|
|
|
|| ($left_type_part->isNumericType() || $left_type_part instanceof TMixed)))
|
|
|
|
) {
|
|
|
|
if (!$result_type) {
|
|
|
|
$result_type = new Type\Union([new TNamedObject('GMP')]);
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(
|
|
|
|
new Type\Union([new TNamedObject('GMP')]),
|
|
|
|
$result_type
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
'Cannot add GMP to non-numeric type',
|
|
|
|
new CodeLocation($statements_source, $parent)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part->isNumericType() || $right_type_part->isNumericType()) {
|
|
|
|
if (($left_type_part instanceof TNumeric || $right_type_part instanceof TNumeric)
|
|
|
|
&& ($left_type_part->isNumericType() && $right_type_part->isNumericType())
|
|
|
|
) {
|
2018-11-07 14:45:26 +01:00
|
|
|
if ($parent instanceof PhpParser\Node\Expr\BinaryOp\Mod) {
|
|
|
|
$result_type = Type::getInt();
|
|
|
|
} elseif (!$result_type) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$result_type = Type::getNumeric();
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(Type::getNumeric(), $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TInt && $right_type_part instanceof TInt) {
|
2018-11-07 14:45:26 +01:00
|
|
|
if ($parent instanceof PhpParser\Node\Expr\BinaryOp\Mod) {
|
|
|
|
$result_type = Type::getInt();
|
|
|
|
} elseif (!$result_type) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$result_type = Type::getInt(true);
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(Type::getInt(true), $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part instanceof TFloat && $right_type_part instanceof TFloat) {
|
2018-11-07 14:45:26 +01:00
|
|
|
if ($parent instanceof PhpParser\Node\Expr\BinaryOp\Mod) {
|
|
|
|
$result_type = Type::getInt();
|
|
|
|
} elseif (!$result_type) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$result_type = Type::getFloat();
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(Type::getFloat(), $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (($left_type_part instanceof TFloat && $right_type_part instanceof TInt)
|
|
|
|
|| ($left_type_part instanceof TInt && $right_type_part instanceof TFloat)
|
|
|
|
) {
|
|
|
|
if ($config->strict_binary_operands) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
'Cannot add ints to floats',
|
|
|
|
new CodeLocation($statements_source, $parent)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:45:26 +01:00
|
|
|
if ($parent instanceof PhpParser\Node\Expr\BinaryOp\Mod) {
|
|
|
|
$result_type = Type::getInt();
|
|
|
|
} elseif (!$result_type) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$result_type = Type::getFloat();
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(Type::getFloat(), $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type_part->isNumericType() && $right_type_part->isNumericType()) {
|
|
|
|
if ($config->strict_binary_operands) {
|
|
|
|
if ($statements_source && IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
'Cannot add numeric types together, please cast explicitly',
|
|
|
|
new CodeLocation($statements_source, $parent)
|
|
|
|
),
|
|
|
|
$statements_source->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-07 14:45:26 +01:00
|
|
|
if ($parent instanceof PhpParser\Node\Expr\BinaryOp\Mod) {
|
|
|
|
$result_type = Type::getInt();
|
|
|
|
} elseif (!$result_type) {
|
2018-05-06 18:04:38 +02:00
|
|
|
$result_type = Type::getFloat();
|
|
|
|
} else {
|
|
|
|
$result_type = Type::combineUnionTypes(Type::getFloat(), $result_type);
|
|
|
|
}
|
|
|
|
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$left_type_part->isNumericType()) {
|
|
|
|
$invalid_left_messages[] = 'Cannot perform a numeric operation with a non-numeric type '
|
|
|
|
. $left_type_part;
|
|
|
|
$has_valid_right_operand = true;
|
|
|
|
} else {
|
|
|
|
$invalid_right_messages[] = 'Cannot perform a numeric operation with a non-numeric type '
|
|
|
|
. $right_type_part;
|
|
|
|
$has_valid_left_operand = true;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$invalid_left_messages[] =
|
|
|
|
'Cannot perform a numeric operation with non-numeric types ' . $left_type_part
|
|
|
|
. ' and ' . $right_type_part;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
/**
|
|
|
|
* @param StatementsChecker $statements_checker
|
|
|
|
* @param PhpParser\Node\Expr $left
|
|
|
|
* @param PhpParser\Node\Expr $right
|
|
|
|
* @param Type\Union|null &$result_type
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public static function analyzeConcatOp(
|
|
|
|
StatementsChecker $statements_checker,
|
|
|
|
PhpParser\Node\Expr $left,
|
|
|
|
PhpParser\Node\Expr $right,
|
|
|
|
Context $context,
|
|
|
|
Type\Union &$result_type = null
|
|
|
|
) {
|
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
2018-02-04 00:52:35 +01:00
|
|
|
$codebase = $project_checker->codebase;
|
2018-01-14 18:09:40 +01:00
|
|
|
|
|
|
|
$left_type = isset($left->inferredType) ? $left->inferredType : null;
|
|
|
|
$right_type = isset($right->inferredType) ? $right->inferredType : null;
|
|
|
|
$config = Config::getInstance();
|
|
|
|
|
|
|
|
if ($project_checker->infer_types_from_usage
|
|
|
|
&& $left_type
|
|
|
|
&& $right_type
|
|
|
|
&& ($left_type->isMixed() || $right_type->isMixed())
|
|
|
|
) {
|
|
|
|
$source_checker = $statements_checker->getSource();
|
|
|
|
|
|
|
|
if ($source_checker instanceof FunctionLikeChecker) {
|
|
|
|
$function_storage = $source_checker->getFunctionLikeStorage($statements_checker);
|
|
|
|
|
|
|
|
$context->inferType($left, $function_storage, Type::getString());
|
|
|
|
$context->inferType($right, $function_storage, Type::getString());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($left_type && $right_type) {
|
|
|
|
$result_type = Type::getString();
|
|
|
|
|
|
|
|
if ($left_type->isMixed() || $right_type->isMixed()) {
|
2018-05-30 22:19:18 +02:00
|
|
|
$codebase->analyzer->incrementMixedCount($statements_checker->getFilePath());
|
2018-01-31 22:08:52 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($left_type->isMixed()) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Left operand cannot be mixed',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Right operand cannot be mixed',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-30 22:19:18 +02:00
|
|
|
$codebase->analyzer->incrementNonMixedCount($statements_checker->getFilePath());
|
2018-01-31 22:08:52 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($left_type->isNull()) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new NullOperand(
|
|
|
|
'Cannot concatenate with a ' . $left_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($right_type->isNull()) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new NullOperand(
|
|
|
|
'Cannot concatenate with a ' . $right_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($left_type->isFalse()) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new FalseOperand(
|
|
|
|
'Cannot concatenate with a ' . $left_type,
|
2018-01-14 18:09:40 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
2018-03-18 21:39:34 +01:00
|
|
|
|
|
|
|
return;
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($right_type->isFalse()) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new FalseOperand(
|
|
|
|
'Cannot concatenate with a ' . $right_type,
|
2018-01-14 18:09:40 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
return;
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($left_type->isNullable() && !$left_type->ignore_nullable_issues) {
|
2018-03-18 19:42:23 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new PossiblyNullOperand(
|
|
|
|
'Cannot concatenate with a possibly null ' . $left_type,
|
2018-03-18 19:42:23 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($right_type->isNullable() && !$right_type->ignore_nullable_issues) {
|
2018-03-18 19:42:23 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new PossiblyNullOperand(
|
|
|
|
'Cannot concatenate with a possibly null ' . $right_type,
|
2018-03-18 19:42:23 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($left_type->isFalsable() && !$left_type->ignore_falsable_issues) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new PossiblyFalseOperand(
|
|
|
|
'Cannot concatenate with a possibly false ' . $left_type,
|
2018-01-14 18:09:40 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($right_type->isFalsable() && !$right_type->ignore_falsable_issues) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2018-03-18 21:39:34 +01:00
|
|
|
new PossiblyFalseOperand(
|
|
|
|
'Cannot concatenate with a possibly false ' . $right_type,
|
2018-01-14 18:09:40 +01:00
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
2018-03-18 21:39:34 +01:00
|
|
|
|
|
|
|
$project_checker = $statements_checker->getFileChecker()->project_checker;
|
|
|
|
|
|
|
|
$left_type_match = true;
|
|
|
|
$right_type_match = true;
|
|
|
|
|
|
|
|
$left_has_scalar_match = false;
|
|
|
|
$right_has_scalar_match = false;
|
|
|
|
|
|
|
|
$has_valid_left_operand = false;
|
|
|
|
$has_valid_right_operand = false;
|
|
|
|
|
|
|
|
foreach ($left_type->getTypes() as $left_type_part) {
|
2018-04-20 16:52:23 +02:00
|
|
|
if ($left_type_part instanceof Type\Atomic\TGenericParam) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Left operand cannot be mixed',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($left_type_part instanceof Type\Atomic\TNull || $left_type_part instanceof Type\Atomic\TFalse) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$left_type_part_match = TypeChecker::isAtomicContainedBy(
|
|
|
|
$project_checker->codebase,
|
|
|
|
$left_type_part,
|
|
|
|
new Type\Atomic\TString,
|
2018-09-09 18:20:49 +02:00
|
|
|
false,
|
2018-03-18 21:39:34 +01:00
|
|
|
$left_has_scalar_match,
|
|
|
|
$left_type_coerced,
|
|
|
|
$left_type_coerced_from_mixed,
|
|
|
|
$left_to_string_cast
|
|
|
|
);
|
|
|
|
|
|
|
|
$left_type_match = $left_type_match && $left_type_part_match;
|
|
|
|
|
|
|
|
$has_valid_left_operand = $has_valid_left_operand || $left_type_part_match;
|
|
|
|
|
|
|
|
if ($left_to_string_cast && $config->strict_binary_operands) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ImplicitToStringCast(
|
|
|
|
'Left side of concat op expects string, '
|
|
|
|
. '\'' . $left_type . '\' provided with a __toString method',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($right_type->getTypes() as $right_type_part) {
|
2018-04-20 16:52:23 +02:00
|
|
|
if ($right_type_part instanceof Type\Atomic\TGenericParam) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new MixedOperand(
|
|
|
|
'Right operand cannot be a template param',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-03-18 21:39:34 +01:00
|
|
|
if ($right_type_part instanceof Type\Atomic\TNull || $right_type_part instanceof Type\Atomic\TFalse) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$right_type_part_match = TypeChecker::isAtomicContainedBy(
|
|
|
|
$project_checker->codebase,
|
|
|
|
$right_type_part,
|
|
|
|
new Type\Atomic\TString,
|
2018-09-09 18:20:49 +02:00
|
|
|
false,
|
2018-03-18 21:39:34 +01:00
|
|
|
$right_has_scalar_match,
|
|
|
|
$right_type_coerced,
|
|
|
|
$right_type_coerced_from_mixed,
|
|
|
|
$right_to_string_cast
|
|
|
|
);
|
|
|
|
|
|
|
|
$right_type_match = $right_type_match && $right_type_part_match;
|
|
|
|
|
|
|
|
$has_valid_right_operand = $has_valid_right_operand || $right_type_part_match;
|
|
|
|
|
|
|
|
if ($right_to_string_cast && $config->strict_binary_operands) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new ImplicitToStringCast(
|
|
|
|
'Right side of concat op expects string, '
|
|
|
|
. '\'' . $right_type . '\' provided with a __toString method',
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$left_type_match && (!$left_has_scalar_match || $config->strict_binary_operands)) {
|
|
|
|
if ($has_valid_left_operand) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new PossiblyInvalidOperand(
|
|
|
|
'Cannot concatenate with a ' . $left_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
'Cannot concatenate with a ' . $left_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $left)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!$right_type_match && (!$right_has_scalar_match || $config->strict_binary_operands)) {
|
|
|
|
if ($has_valid_right_operand) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new PossiblyInvalidOperand(
|
|
|
|
'Cannot concatenate with a ' . $right_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidOperand(
|
|
|
|
'Cannot concatenate with a ' . $right_type,
|
|
|
|
new CodeLocation($statements_checker->getSource(), $right)
|
|
|
|
),
|
|
|
|
$statements_checker->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
2018-05-09 01:11:18 +02:00
|
|
|
// When concatenating two known string literals (with only one possibility),
|
|
|
|
// put the concatenated string into $result_type
|
|
|
|
if ($left_type && $right_type && $left_type->isSingleStringLiteral() && $right_type->isSingleStringLiteral()) {
|
2018-08-09 03:31:13 +02:00
|
|
|
$literal = $left_type->getSingleStringLiteral()->value . $right_type->getSingleStringLiteral()->value;
|
2018-05-09 01:11:18 +02:00
|
|
|
if (strlen($literal) <= 10000) {
|
|
|
|
// Limit these to 10000 bytes to avoid extremely large union types from repeated concatenations, etc
|
2018-05-18 17:02:50 +02:00
|
|
|
$result_type = new Union([new TLiteralString($literal)]);
|
2018-05-09 01:11:18 +02:00
|
|
|
}
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
|
|
|
}
|