2016-10-22 19:23:18 +02:00
|
|
|
<?php
|
2018-11-06 03:57:36 +01:00
|
|
|
namespace Psalm\Internal\Analyzer\Statements;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
|
|
|
use PhpParser;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Codebase;
|
|
|
|
use Psalm\Internal\Analyzer\ClassLikeAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\ClosureAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\CommentAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\FunctionLikeAnalyzer;
|
2019-02-06 21:52:43 +01:00
|
|
|
use Psalm\Internal\Analyzer\TraitAnalyzer;
|
2018-11-06 03:57:36 +01:00
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\ArrayAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\AssertionFinder;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\AssignmentAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\BinaryOpAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Call\FunctionCallAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Call\MethodCallAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Call\NewAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Call\StaticCallAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Fetch\ArrayFetchAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Fetch\ConstFetchAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Fetch\PropertyFetchAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\Fetch\VariableFetchAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\IncludeAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\Statements\Expression\TernaryAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\TypeAnalyzer;
|
2016-12-04 01:11:30 +01:00
|
|
|
use Psalm\CodeLocation;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Config;
|
|
|
|
use Psalm\Context;
|
2017-11-15 03:43:31 +01:00
|
|
|
use Psalm\Exception\DocblockParseException;
|
2018-11-12 16:46:55 +01:00
|
|
|
use Psalm\Internal\FileManipulation\FileManipulationBuffer;
|
2018-02-23 21:39:33 +01:00
|
|
|
use Psalm\FileSource;
|
2019-01-30 17:36:21 +01:00
|
|
|
use Psalm\Issue\DuplicateParam;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Issue\ForbiddenCode;
|
2017-10-07 17:27:54 +02:00
|
|
|
use Psalm\Issue\InvalidCast;
|
2017-01-16 18:59:09 +01:00
|
|
|
use Psalm\Issue\InvalidClone;
|
2017-11-15 03:43:31 +01:00
|
|
|
use Psalm\Issue\InvalidDocblock;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Issue\PossiblyUndefinedVariable;
|
2019-01-04 18:28:00 +01:00
|
|
|
use Psalm\Issue\UndefinedConstant;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Issue\UndefinedVariable;
|
2016-11-06 01:53:39 +01:00
|
|
|
use Psalm\Issue\UnrecognizedExpression;
|
2016-11-02 07:29:00 +01:00
|
|
|
use Psalm\IssueBuffer;
|
2016-10-22 19:23:18 +02:00
|
|
|
use Psalm\Type;
|
2017-01-15 01:06:58 +01:00
|
|
|
use Psalm\Type\Atomic\ObjectLike;
|
|
|
|
use Psalm\Type\Atomic\Scalar;
|
|
|
|
use Psalm\Type\Atomic\TArray;
|
2017-05-19 06:48:26 +02:00
|
|
|
use Psalm\Type\Atomic\TFloat;
|
2019-02-22 03:40:06 +01:00
|
|
|
use Psalm\Type\Atomic\TTemplateParam;
|
2017-05-19 06:48:26 +02:00
|
|
|
use Psalm\Type\Atomic\TInt;
|
2017-01-15 01:06:58 +01:00
|
|
|
use Psalm\Type\Atomic\TMixed;
|
|
|
|
use Psalm\Type\Atomic\TNamedObject;
|
2018-08-21 04:11:01 +02:00
|
|
|
use Psalm\Type\Atomic\TNull;
|
2017-05-19 06:48:26 +02:00
|
|
|
use Psalm\Type\Atomic\TObject;
|
|
|
|
use Psalm\Type\Atomic\TString;
|
2018-11-18 18:41:47 +01:00
|
|
|
use Psalm\Internal\Type\TypeCombination;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-12-02 00:37:49 +01:00
|
|
|
/**
|
|
|
|
* @internal
|
|
|
|
*/
|
2018-11-06 03:57:36 +01:00
|
|
|
class ExpressionAnalyzer
|
2016-10-22 19:23:18 +02:00
|
|
|
{
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param Context $context
|
|
|
|
* @param bool $array_assignment
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
public static function analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-10-22 19:23:18 +02:00
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
Context $context,
|
2018-05-23 05:38:27 +02:00
|
|
|
$array_assignment = false,
|
|
|
|
Context $global_context = null
|
2016-10-22 19:23:18 +02:00
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
2018-11-06 03:57:36 +01:00
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\Variable) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if (VariableFetchAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt,
|
|
|
|
$context,
|
|
|
|
false,
|
|
|
|
null,
|
|
|
|
$array_assignment
|
|
|
|
) === false
|
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Assign) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$assignment_type = AssignmentAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2016-11-01 16:37:58 +01:00
|
|
|
$stmt->var,
|
|
|
|
$stmt->expr,
|
2016-12-04 20:14:00 +01:00
|
|
|
null,
|
2016-11-01 16:37:58 +01:00
|
|
|
$context,
|
2017-04-11 21:34:05 +02:00
|
|
|
(string)$stmt->getDocComment(),
|
|
|
|
$stmt->getLine()
|
2016-11-01 16:37:58 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
if ($assignment_type === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-01 16:37:58 +01:00
|
|
|
|
|
|
|
$stmt->inferredType = $assignment_type;
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\AssignOp) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (AssignmentAnalyzer::analyzeAssignmentOperation($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\MethodCall) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (MethodCallAnalyzer::analyze($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\StaticCall) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (StaticCallAnalyzer::analyze($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ConstFetch) {
|
2018-11-11 18:01:14 +01:00
|
|
|
ConstFetchAnalyzer::analyze($statements_analyzer, $stmt, $context);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\String_) {
|
2018-11-27 23:45:07 +01:00
|
|
|
$stmt->inferredType = Type::getString(strlen($stmt->value) < 50 ? $stmt->value : null);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\EncapsedStringPart) {
|
2016-10-22 19:23:18 +02:00
|
|
|
// do nothing
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst) {
|
2017-12-06 06:05:01 +01:00
|
|
|
switch (strtolower($stmt->getName())) {
|
|
|
|
case '__line__':
|
|
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
break;
|
|
|
|
|
2018-03-05 23:36:08 +01:00
|
|
|
case '__class__':
|
2019-01-04 18:28:00 +01:00
|
|
|
if (!$context->self) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedConstant(
|
|
|
|
'Cannot get __class__ outside a class',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = Type::getClassString();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = Type::getLiteralClassString($context->self);
|
2018-03-05 23:36:08 +01:00
|
|
|
break;
|
|
|
|
|
2019-02-18 19:14:08 +01:00
|
|
|
case '__namespace__':
|
|
|
|
$namespace = $statements_analyzer->getNamespace();
|
|
|
|
if ($namespace === null &&
|
|
|
|
IssueBuffer::accepts(
|
|
|
|
new UndefinedConstant(
|
|
|
|
'Cannot get __namespace__ outside a namespace',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = Type::getString($namespace);
|
|
|
|
break;
|
|
|
|
|
2017-12-06 06:05:01 +01:00
|
|
|
case '__file__':
|
|
|
|
case '__dir__':
|
|
|
|
case '__function__':
|
|
|
|
case '__trait__':
|
|
|
|
case '__method__':
|
|
|
|
$stmt->inferredType = Type::getString();
|
|
|
|
break;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\LNumber) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$stmt->inferredType = Type::getInt(false, $stmt->value);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\DNumber) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$stmt->inferredType = Type::getFloat($stmt->value);
|
2017-01-26 04:02:19 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\UnaryMinus ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\UnaryPlus
|
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-07 21:29:47 +01:00
|
|
|
|
2017-01-26 04:02:19 +01:00
|
|
|
if (!isset($stmt->expr->inferredType)) {
|
|
|
|
$stmt->inferredType = new Type\Union([new TInt, new TFloat]);
|
2017-01-26 05:50:34 +01:00
|
|
|
} elseif ($stmt->expr->inferredType->isMixed()) {
|
|
|
|
$stmt->inferredType = Type::getMixed();
|
2017-01-26 04:02:19 +01:00
|
|
|
} else {
|
2017-01-26 04:23:06 +01:00
|
|
|
$acceptable_types = [];
|
|
|
|
|
2018-01-09 21:05:48 +01:00
|
|
|
foreach ($stmt->expr->inferredType->getTypes() as $type_part) {
|
2017-01-26 04:23:06 +01:00
|
|
|
if ($type_part instanceof TInt || $type_part instanceof TFloat) {
|
2018-05-13 00:46:47 +02:00
|
|
|
if ($type_part instanceof Type\Atomic\TLiteralInt
|
|
|
|
&& $stmt instanceof PhpParser\Node\Expr\UnaryMinus
|
|
|
|
) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$type_part->value = -$type_part->value;
|
2018-05-13 00:46:47 +02:00
|
|
|
} elseif ($type_part instanceof Type\Atomic\TLiteralFloat
|
|
|
|
&& $stmt instanceof PhpParser\Node\Expr\UnaryMinus
|
|
|
|
) {
|
2018-05-18 17:02:50 +02:00
|
|
|
$type_part->value = -$type_part->value;
|
2018-05-13 00:46:47 +02:00
|
|
|
}
|
|
|
|
|
2017-01-26 04:23:06 +01:00
|
|
|
$acceptable_types[] = $type_part;
|
|
|
|
} elseif ($type_part instanceof TString) {
|
|
|
|
$acceptable_types[] = new TInt;
|
|
|
|
$acceptable_types[] = new TFloat;
|
2017-01-26 05:50:34 +01:00
|
|
|
} else {
|
|
|
|
$acceptable_types[] = new TInt;
|
2017-01-26 04:02:19 +01:00
|
|
|
}
|
2017-01-26 04:23:06 +01:00
|
|
|
}
|
|
|
|
|
2017-01-26 05:50:34 +01:00
|
|
|
$stmt->inferredType = new Type\Union($acceptable_types);
|
2017-01-26 04:02:19 +01:00
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Isset_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeIsset($statements_analyzer, $stmt, $context);
|
2016-11-05 22:53:30 +01:00
|
|
|
$stmt->inferredType = Type::getBool();
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ClassConstFetch) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (ConstFetchAnalyzer::analyzeClassConst($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PropertyFetch) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (PropertyFetchAnalyzer::analyzeInstance($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\StaticPropertyFetch) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (PropertyFetchAnalyzer::analyzeStatic($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BitwiseNot) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BinaryOp) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if (BinaryOpAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2017-02-13 00:06:18 +01:00
|
|
|
$stmt,
|
2017-02-13 01:07:25 +01:00
|
|
|
$context
|
2017-02-13 00:06:18 +01:00
|
|
|
) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-12-17 06:48:31 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\PostInc ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\PostDec ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\PreInc ||
|
|
|
|
$stmt instanceof PhpParser\Node\Expr\PreDec
|
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->var, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-12-25 00:44:11 +01:00
|
|
|
|
|
|
|
if (isset($stmt->var->inferredType)) {
|
2018-06-18 19:16:51 +02:00
|
|
|
$return_type = null;
|
|
|
|
|
|
|
|
$fake_right_expr = new PhpParser\Node\Scalar\LNumber(1, $stmt->getAttributes());
|
|
|
|
$fake_right_expr->inferredType = Type::getInt();
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
BinaryOpAnalyzer::analyzeNonDivArithmenticOp(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-06-18 19:16:51 +02:00
|
|
|
$stmt->var,
|
|
|
|
$fake_right_expr,
|
|
|
|
$stmt,
|
|
|
|
$return_type,
|
|
|
|
$context
|
|
|
|
);
|
|
|
|
|
2016-12-25 00:44:11 +01:00
|
|
|
$stmt->inferredType = clone $stmt->var->inferredType;
|
2018-04-25 05:12:01 +02:00
|
|
|
$stmt->inferredType->from_calculation = true;
|
|
|
|
|
2018-05-08 23:42:02 +02:00
|
|
|
foreach ($stmt->inferredType->getTypes() as $atomic_type) {
|
|
|
|
if ($atomic_type instanceof Type\Atomic\TLiteralInt) {
|
|
|
|
$stmt->inferredType->addType(new Type\Atomic\TInt);
|
|
|
|
} elseif ($atomic_type instanceof Type\Atomic\TLiteralFloat) {
|
|
|
|
$stmt->inferredType->addType(new Type\Atomic\TFloat);
|
2018-05-03 19:56:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-25 05:12:01 +02:00
|
|
|
$var_id = self::getArrayVarId($stmt->var, null);
|
|
|
|
|
|
|
|
if ($var_id && isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = $stmt->inferredType;
|
2018-06-17 05:40:25 +02:00
|
|
|
|
|
|
|
if ($context->collect_references && $stmt->var instanceof PhpParser\Node\Expr\Variable) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$location = new CodeLocation($statements_analyzer, $stmt->var);
|
2018-06-17 05:40:25 +02:00
|
|
|
$context->assigned_var_ids[$var_id] = true;
|
|
|
|
$context->possibly_assigned_var_ids[$var_id] = true;
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->registerVariableAssignment(
|
2018-06-17 05:40:25 +02:00
|
|
|
$var_id,
|
|
|
|
$location
|
|
|
|
);
|
|
|
|
$context->unreferenced_vars[$var_id] = [$location->getHash() => $location];
|
|
|
|
}
|
2018-04-25 05:12:01 +02:00
|
|
|
}
|
2016-12-25 00:44:11 +01:00
|
|
|
} else {
|
|
|
|
$stmt->inferredType = Type::getMixed();
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\New_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (NewAnalyzer::analyze($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Array_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (ArrayAnalyzer::analyze($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\Encapsed) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyzeEncapsulatedString($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\FuncCall) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if (FunctionCallAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2017-07-29 21:05:06 +02:00
|
|
|
$stmt,
|
|
|
|
$context
|
|
|
|
) === false
|
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Ternary) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (TernaryAnalyzer::analyze($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\BooleanNot) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyzeBooleanNot($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Empty_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeEmpty($statements_analyzer, $stmt, $context);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Closure) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$closure_analyzer = new ClosureAnalyzer($stmt, $statements_analyzer);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyzeClosureUses($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-01-17 00:33:04 +01:00
|
|
|
$use_context = new Context($context->self);
|
2018-01-21 19:38:51 +01:00
|
|
|
$use_context->collect_references = $codebase->collect_references;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$statements_analyzer->isStatic()) {
|
2017-01-12 06:54:41 +01:00
|
|
|
if ($context->collect_mutations &&
|
|
|
|
$context->self &&
|
2018-02-01 06:50:01 +01:00
|
|
|
$codebase->classExtends(
|
2017-01-12 06:54:41 +01:00
|
|
|
$context->self,
|
2018-11-11 18:01:14 +01:00
|
|
|
(string)$statements_analyzer->getFQCLN()
|
2017-01-02 21:31:18 +01:00
|
|
|
)
|
2017-01-12 06:54:41 +01:00
|
|
|
) {
|
|
|
|
$use_context->vars_in_scope['$this'] = clone $context->vars_in_scope['$this'];
|
|
|
|
} elseif ($context->self) {
|
2017-01-15 01:06:58 +01:00
|
|
|
$use_context->vars_in_scope['$this'] = new Type\Union([new TNamedObject($context->self)]);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($context->vars_in_scope as $var => $type) {
|
|
|
|
if (strpos($var, '$this->') === 0) {
|
|
|
|
$use_context->vars_in_scope[$var] = clone $type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 18:43:19 +01:00
|
|
|
foreach ($context->vars_possibly_in_scope as $var => $_) {
|
2016-10-22 19:23:18 +02:00
|
|
|
if (strpos($var, '$this->') === 0) {
|
|
|
|
$use_context->vars_possibly_in_scope[$var] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($stmt->uses as $use) {
|
2018-04-17 18:16:25 +02:00
|
|
|
if (!is_string($use->var->name)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$use_var_id = '$' . $use->var->name;
|
2016-10-30 03:17:46 +01:00
|
|
|
// insert the ref into the current context if passed by ref, as whatever we're passing
|
|
|
|
// the closure to could execute it straight away.
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$context->hasVariable($use_var_id, $statements_analyzer) && $use->byRef) {
|
2018-04-17 18:16:25 +02:00
|
|
|
$context->vars_in_scope[$use_var_id] = Type::getMixed();
|
2016-10-30 03:17:46 +01:00
|
|
|
}
|
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
$use_context->vars_in_scope[$use_var_id] =
|
2018-11-11 18:01:14 +01:00
|
|
|
$context->hasVariable($use_var_id, $statements_analyzer) && !$use->byRef
|
2018-04-17 18:16:25 +02:00
|
|
|
? clone $context->vars_in_scope[$use_var_id]
|
2016-11-02 07:29:00 +01:00
|
|
|
: Type::getMixed();
|
2016-10-30 03:17:46 +01:00
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
$use_context->vars_possibly_in_scope[$use_var_id] = true;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$closure_analyzer->analyze($use_context, $context);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-12-07 20:13:39 +01:00
|
|
|
if (!isset($stmt->inferredType)) {
|
|
|
|
$stmt->inferredType = Type::getClosure();
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if (ArrayFetchAnalyzer::analyze(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmt,
|
2017-11-19 18:33:43 +01:00
|
|
|
$context
|
2016-11-02 07:29:00 +01:00
|
|
|
) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Int_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmt->inferredType = Type::getInt();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Double) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmt->inferredType = Type::getFloat();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Bool_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmt->inferredType = Type::getBool();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\String_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-07 17:27:54 +02:00
|
|
|
$container_type = Type::getString();
|
|
|
|
|
2017-10-07 21:05:05 +02:00
|
|
|
if (isset($stmt->expr->inferredType)
|
2018-12-08 19:18:55 +01:00
|
|
|
&& !$stmt->expr->inferredType->hasMixed()
|
2018-04-30 06:19:35 +02:00
|
|
|
&& !isset($stmt->expr->inferredType->getTypes()['resource'])
|
2018-11-06 03:57:36 +01:00
|
|
|
&& !TypeAnalyzer::isContainedBy(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getCodebase(),
|
2017-10-07 17:27:54 +02:00
|
|
|
$stmt->expr->inferredType,
|
|
|
|
$container_type,
|
|
|
|
true,
|
2017-10-23 17:47:00 +02:00
|
|
|
false,
|
2017-10-07 17:27:54 +02:00
|
|
|
$has_scalar_match
|
|
|
|
)
|
|
|
|
&& !$has_scalar_match
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidCast(
|
2019-01-05 06:15:53 +01:00
|
|
|
$stmt->expr->inferredType->getId() . ' cannot be cast to ' . $container_type,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2017-10-07 17:27:54 +02:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2017-10-07 17:27:54 +02:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = $container_type;
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Object_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-09 21:58:09 +01:00
|
|
|
$stmt->inferredType = new Type\Union([new TNamedObject('stdClass')]);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Array_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-04-21 20:06:47 +02:00
|
|
|
$permissible_atomic_types = [];
|
2017-04-21 22:33:18 +02:00
|
|
|
$all_permissible = false;
|
2017-04-21 20:06:47 +02:00
|
|
|
|
|
|
|
if (isset($stmt->expr->inferredType)) {
|
2017-04-21 22:33:18 +02:00
|
|
|
$all_permissible = true;
|
|
|
|
|
2018-01-09 21:05:48 +01:00
|
|
|
foreach ($stmt->expr->inferredType->getTypes() as $type) {
|
2017-04-21 20:06:47 +02:00
|
|
|
if ($type instanceof Scalar) {
|
2018-08-21 04:11:01 +02:00
|
|
|
$permissible_atomic_types[] = new ObjectLike([new Type\Union([$type])]);
|
|
|
|
} elseif ($type instanceof TNull) {
|
|
|
|
$permissible_atomic_types[] = new TArray([Type::getEmpty(), Type::getEmpty()]);
|
2017-04-21 20:06:47 +02:00
|
|
|
} elseif ($type instanceof TArray) {
|
2018-08-21 04:11:01 +02:00
|
|
|
$permissible_atomic_types[] = clone $type;
|
2017-04-21 20:06:47 +02:00
|
|
|
} elseif ($type instanceof ObjectLike) {
|
2018-08-21 04:11:01 +02:00
|
|
|
$permissible_atomic_types[] = clone $type;
|
2017-04-21 20:06:47 +02:00
|
|
|
} else {
|
|
|
|
$all_permissible = false;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($all_permissible) {
|
2018-05-20 01:44:03 +02:00
|
|
|
$stmt->inferredType = TypeCombination::combineTypes($permissible_atomic_types);
|
2017-04-21 20:06:47 +02:00
|
|
|
} else {
|
|
|
|
$stmt->inferredType = Type::getArray();
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Cast\Unset_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
$stmt->inferredType = Type::getNull();
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Clone_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeClone($statements_analyzer, $stmt, $context);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Instanceof_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-06-27 16:07:31 +02:00
|
|
|
if ($stmt->class instanceof PhpParser\Node\Expr) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->class, $context) === false) {
|
2018-06-27 16:07:31 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
} elseif (!in_array(strtolower($stmt->class->parts[0]), ['self', 'static', 'parent'], true)
|
2016-11-02 07:29:00 +01:00
|
|
|
) {
|
2016-10-22 19:23:18 +02:00
|
|
|
if ($context->check_classes) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$fq_class_name = ClassLikeAnalyzer::getFQCLNFromNameObject(
|
2016-10-22 19:23:18 +02:00
|
|
|
$stmt->class,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getAliases()
|
2016-10-22 19:23:18 +02:00
|
|
|
);
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
if (ClassLikeAnalyzer::checkFullyQualifiedClassLikeName(
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2016-11-07 23:29:51 +01:00
|
|
|
$fq_class_name,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt->class),
|
|
|
|
$statements_analyzer->getSuppressedIssues(),
|
2018-01-02 02:04:03 +01:00
|
|
|
false
|
2016-11-02 07:29:00 +01:00
|
|
|
) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2019-02-24 07:33:25 +01:00
|
|
|
|
|
|
|
if ($codebase->store_node_types
|
|
|
|
&& $fq_class_name
|
|
|
|
&& $codebase->classOrInterfaceExists($fq_class_name)
|
|
|
|
) {
|
|
|
|
$codebase->analyzer->addNodeReference(
|
|
|
|
$statements_analyzer->getFilePath(),
|
|
|
|
$stmt->class,
|
|
|
|
$fq_class_name
|
|
|
|
);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-05 22:57:14 +01:00
|
|
|
|
|
|
|
$stmt->inferredType = Type::getBool();
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Exit_) {
|
2017-02-12 01:42:12 +01:00
|
|
|
if ($stmt->expr) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2017-02-12 01:42:12 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Include_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
IncludeAnalyzer::analyze($statements_analyzer, $stmt, $context, $global_context);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Eval_) {
|
2016-10-22 19:23:18 +02:00
|
|
|
$context->check_classes = false;
|
|
|
|
$context->check_variables = false;
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\AssignRef) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (AssignmentAnalyzer::analyzeAssignmentRef($statements_analyzer, $stmt, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ErrorSuppress) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2018-03-13 04:48:10 +01:00
|
|
|
return false;
|
|
|
|
}
|
2018-09-04 19:57:05 +02:00
|
|
|
$stmt->inferredType = isset($stmt->expr->inferredType) ? $stmt->expr->inferredType : null;
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\ShellExec) {
|
2016-10-22 19:23:18 +02:00
|
|
|
if (IssueBuffer::accepts(
|
2016-12-04 01:11:30 +01:00
|
|
|
new ForbiddenCode(
|
|
|
|
'Use of shell_exec',
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2016-12-04 01:11:30 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2016-10-22 19:23:18 +02:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Print_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Yield_) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeYield($statements_analyzer, $stmt, $context);
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\YieldFrom) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeYieldFrom($statements_analyzer, $stmt, $context);
|
2018-10-07 02:11:19 +02:00
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Expr\Error) {
|
|
|
|
// do nothing
|
2016-11-02 07:29:00 +01:00
|
|
|
} else {
|
2016-11-06 01:53:39 +01:00
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UnrecognizedExpression(
|
|
|
|
'Psalm does not understand ' . get_class($stmt),
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2016-11-06 01:53:39 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2016-11-06 01:53:39 +01:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2018-06-26 00:02:05 +02:00
|
|
|
if (!$context->inside_conditional
|
|
|
|
&& ($stmt instanceof PhpParser\Node\Expr\BinaryOp
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\Instanceof_
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\Assign
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\BooleanNot
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\Empty_
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\Isset_
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\FuncCall)
|
|
|
|
) {
|
|
|
|
AssertionFinder::scrapeAssertions(
|
|
|
|
$stmt,
|
|
|
|
$context->self,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase
|
2018-06-26 00:02:05 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$plugin_classes = $codebase->config->after_expression_checks;
|
2016-12-04 01:11:30 +01:00
|
|
|
|
2018-02-12 04:49:19 +01:00
|
|
|
if ($plugin_classes) {
|
2017-11-07 20:46:53 +01:00
|
|
|
$file_manipulations = [];
|
2016-12-08 21:57:18 +01:00
|
|
|
|
2018-02-12 04:49:19 +01:00
|
|
|
foreach ($plugin_classes as $plugin_fq_class_name) {
|
2018-11-06 03:57:36 +01:00
|
|
|
if ($plugin_fq_class_name::afterExpressionAnalysis(
|
2016-12-04 01:11:30 +01:00
|
|
|
$stmt,
|
|
|
|
$context,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSource(),
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2017-11-07 20:46:53 +01:00
|
|
|
$file_manipulations
|
2016-12-04 01:11:30 +01:00
|
|
|
) === false) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2017-11-07 20:46:53 +01:00
|
|
|
|
|
|
|
if ($file_manipulations) {
|
2018-02-12 02:56:34 +01:00
|
|
|
/** @psalm-suppress MixedTypeCoercion */
|
2018-11-11 18:01:14 +01:00
|
|
|
FileManipulationBuffer::add($statements_analyzer->getFilePath(), $file_manipulations);
|
2017-11-07 20:46:53 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
|
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param Type\Union $by_ref_type
|
|
|
|
* @param Context $context
|
2018-02-18 23:55:11 +01:00
|
|
|
* @param bool $constrain_type
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-10-22 19:23:18 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
2016-11-02 07:29:00 +01:00
|
|
|
public static function assignByRefParam(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
Type\Union $by_ref_type,
|
2017-10-28 21:33:29 +02:00
|
|
|
Context $context,
|
2019-02-20 23:43:12 +01:00
|
|
|
bool $constrain_type = true,
|
|
|
|
bool $prevent_null = false
|
2016-11-02 07:29:00 +01:00
|
|
|
) {
|
|
|
|
$var_id = self::getVarId(
|
|
|
|
$stmt,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getFQCLN(),
|
|
|
|
$statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2016-12-24 19:23:22 +01:00
|
|
|
if ($var_id) {
|
2018-12-08 19:18:55 +01:00
|
|
|
if (!$by_ref_type->hasMixed() && $constrain_type) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$context->byref_constraints[$var_id] = new \Psalm\Internal\ReferenceConstraint($by_ref_type);
|
2017-02-23 06:25:28 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$context->hasVariable($var_id, $statements_analyzer)) {
|
2016-12-24 19:23:22 +01:00
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
2017-02-08 00:09:12 +01:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$statements_analyzer->hasVariable($var_id)) {
|
|
|
|
$location = new CodeLocation($statements_analyzer, $stmt);
|
|
|
|
$statements_analyzer->registerVariable($var_id, $location, null);
|
2018-01-28 23:28:34 +01:00
|
|
|
|
2019-02-20 23:43:12 +01:00
|
|
|
if ($constrain_type
|
|
|
|
&& $prevent_null
|
|
|
|
&& !$by_ref_type->isMixed()
|
|
|
|
&& !$by_ref_type->isNullable()
|
|
|
|
&& !strpos($var_id, '->')
|
|
|
|
&& !strpos($var_id, '::')
|
|
|
|
) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new \Psalm\Issue\NullArgument(
|
|
|
|
'Not expecting null argument passed by reference',
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-28 23:28:34 +01:00
|
|
|
if ($context->collect_references) {
|
2018-06-17 02:01:33 +02:00
|
|
|
$context->unreferenced_vars[$var_id] = [$location->getHash() => $location];
|
2018-01-28 23:28:34 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$context->hasVariable($var_id, $statements_analyzer);
|
2017-02-08 00:09:12 +01:00
|
|
|
}
|
2016-12-24 19:23:22 +01:00
|
|
|
} else {
|
|
|
|
$existing_type = $context->vars_in_scope[$var_id];
|
2017-04-02 23:37:56 +02:00
|
|
|
|
2018-11-21 18:38:43 +01:00
|
|
|
// removes dependent vars from $context
|
2017-04-02 23:37:56 +02:00
|
|
|
$context->removeDescendents(
|
|
|
|
$var_id,
|
|
|
|
$existing_type,
|
|
|
|
$by_ref_type,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer
|
2017-04-02 23:37:56 +02:00
|
|
|
);
|
|
|
|
|
2018-01-09 21:44:31 +01:00
|
|
|
if ($existing_type->getId() !== 'array<empty, empty>') {
|
2018-12-21 19:53:22 +01:00
|
|
|
$context->vars_in_scope[$var_id] = clone $by_ref_type;
|
2018-11-21 18:38:43 +01:00
|
|
|
|
|
|
|
if (!isset($stmt->inferredType) || $stmt->inferredType->isEmpty()) {
|
|
|
|
$stmt->inferredType = clone $by_ref_type;
|
|
|
|
}
|
2017-05-25 04:07:49 +02:00
|
|
|
|
2016-12-24 19:23:22 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2017-02-23 06:25:28 +01:00
|
|
|
|
|
|
|
$context->vars_in_scope[$var_id] = $by_ref_type;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-11-21 18:38:43 +01:00
|
|
|
if (!isset($stmt->inferredType) || $stmt->inferredType->isEmpty()) {
|
|
|
|
$stmt->inferredType = clone $by_ref_type;
|
|
|
|
}
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-14 18:09:40 +01:00
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param string|null $this_class_name
|
2018-02-23 21:39:33 +01:00
|
|
|
* @param FileSource|null $source
|
2018-01-14 18:09:40 +01:00
|
|
|
* @param int|null &$nesting
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2018-01-14 18:09:40 +01:00
|
|
|
* @return string|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2018-01-14 18:09:40 +01:00
|
|
|
public static function getVarId(
|
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
$this_class_name,
|
2018-02-23 21:39:33 +01:00
|
|
|
FileSource $source = null,
|
2018-01-14 18:09:40 +01:00
|
|
|
&$nesting = null
|
2016-10-22 19:23:18 +02:00
|
|
|
) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\Variable && is_string($stmt->name)) {
|
|
|
|
return '$' . $stmt->name;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\StaticPropertyFetch
|
2018-04-17 18:16:25 +02:00
|
|
|
&& $stmt->name instanceof PhpParser\Node\Identifier
|
2018-01-14 18:09:40 +01:00
|
|
|
&& $stmt->class instanceof PhpParser\Node\Name
|
|
|
|
) {
|
|
|
|
if (count($stmt->class->parts) === 1
|
|
|
|
&& in_array(strtolower($stmt->class->parts[0]), ['self', 'static', 'parent'], true)
|
|
|
|
) {
|
|
|
|
if (!$this_class_name) {
|
|
|
|
$fq_class_name = $stmt->class->parts[0];
|
|
|
|
} else {
|
|
|
|
$fq_class_name = $this_class_name;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} else {
|
2018-01-14 18:09:40 +01:00
|
|
|
$fq_class_name = $source
|
2018-11-06 03:57:36 +01:00
|
|
|
? ClassLikeAnalyzer::getFQCLNFromNameObject(
|
2018-01-14 18:09:40 +01:00
|
|
|
$stmt->class,
|
|
|
|
$source->getAliases()
|
|
|
|
)
|
|
|
|
: implode('\\', $stmt->class->parts);
|
2017-02-11 05:35:34 +01:00
|
|
|
}
|
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
return $fq_class_name . '::$' . $stmt->name->name;
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\PropertyFetch && $stmt->name instanceof PhpParser\Node\Identifier) {
|
2018-01-14 18:09:40 +01:00
|
|
|
$object_id = self::getVarId($stmt->var, $this_class_name, $source);
|
2017-03-20 07:05:58 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if (!$object_id) {
|
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
return $object_id . '->' . $stmt->name->name;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch && $nesting !== null) {
|
|
|
|
++$nesting;
|
2017-05-25 04:07:49 +02:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
return self::getVarId($stmt->var, $this_class_name, $source, $nesting);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-01-14 18:09:40 +01:00
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param string|null $this_class_name
|
2018-02-23 21:39:33 +01:00
|
|
|
* @param FileSource|null $source
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2018-01-14 18:09:40 +01:00
|
|
|
* @return string|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2018-01-14 18:09:40 +01:00
|
|
|
public static function getRootVarId(
|
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
$this_class_name,
|
2018-02-23 21:39:33 +01:00
|
|
|
FileSource $source = null
|
2016-10-22 19:23:18 +02:00
|
|
|
) {
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\Variable
|
|
|
|
|| $stmt instanceof PhpParser\Node\Expr\StaticPropertyFetch
|
2017-02-17 02:43:23 +01:00
|
|
|
) {
|
2018-01-14 18:09:40 +01:00
|
|
|
return self::getVarId($stmt, $this_class_name, $source);
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2018-04-17 18:16:25 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\PropertyFetch && $stmt->name instanceof PhpParser\Node\Identifier) {
|
2018-01-14 18:09:40 +01:00
|
|
|
$property_root = self::getRootVarId($stmt->var, $this_class_name, $source);
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($property_root) {
|
2018-04-17 18:16:25 +02:00
|
|
|
return $property_root . '->' . $stmt->name->name;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
|
|
|
return self::getRootVarId($stmt->var, $this_class_name, $source);
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
return null;
|
|
|
|
}
|
2017-11-28 06:46:41 +01:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
/**
|
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param string|null $this_class_name
|
2018-02-23 21:39:33 +01:00
|
|
|
* @param FileSource|null $source
|
2018-01-14 18:09:40 +01:00
|
|
|
*
|
|
|
|
* @return string|null
|
|
|
|
*/
|
|
|
|
public static function getArrayVarId(
|
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
$this_class_name,
|
2018-02-23 21:39:33 +01:00
|
|
|
FileSource $source = null
|
2018-01-14 18:09:40 +01:00
|
|
|
) {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\Assign) {
|
|
|
|
return self::getArrayVarId($stmt->var, $this_class_name, $source);
|
|
|
|
}
|
2017-12-04 00:33:54 +01:00
|
|
|
|
2018-02-17 17:24:08 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\ArrayDimFetch) {
|
2018-01-14 18:09:40 +01:00
|
|
|
$root_var_id = self::getArrayVarId($stmt->var, $this_class_name, $source);
|
2017-12-04 00:33:54 +01:00
|
|
|
|
2018-02-17 17:24:08 +01:00
|
|
|
$offset = null;
|
|
|
|
|
|
|
|
if ($root_var_id) {
|
|
|
|
if ($stmt->dim instanceof PhpParser\Node\Scalar\String_
|
|
|
|
|| $stmt->dim instanceof PhpParser\Node\Scalar\LNumber
|
|
|
|
) {
|
|
|
|
$offset = $stmt->dim instanceof PhpParser\Node\Scalar\String_
|
|
|
|
? '\'' . $stmt->dim->value . '\''
|
|
|
|
: $stmt->dim->value;
|
|
|
|
} elseif ($stmt->dim instanceof PhpParser\Node\Expr\Variable
|
|
|
|
&& is_string($stmt->dim->name)
|
|
|
|
) {
|
|
|
|
$offset = '$' . $stmt->dim->name;
|
2018-05-31 22:49:01 +02:00
|
|
|
} elseif ($stmt->dim instanceof PhpParser\Node\Expr\ConstFetch) {
|
|
|
|
$offset = implode('\\', $stmt->dim->name->parts);
|
2019-02-07 22:24:31 +01:00
|
|
|
} elseif (isset($stmt->dim->inferredType)) {
|
|
|
|
if ($stmt->dim->inferredType->isSingleStringLiteral()) {
|
|
|
|
$offset = '\'' . $stmt->dim->inferredType->getSingleStringLiteral()->value . '\'';
|
|
|
|
} elseif ($stmt->dim->inferredType->isSingleIntLiteral()) {
|
|
|
|
$offset = $stmt->dim->inferredType->getSingleIntLiteral()->value;
|
|
|
|
}
|
|
|
|
} elseif ($stmt->dim instanceof PhpParser\Node\Expr\ClassConstFetch
|
|
|
|
&& $stmt->dim->name instanceof PhpParser\Node\Identifier
|
|
|
|
) {
|
|
|
|
/** @var string|null */
|
|
|
|
$resolved_name = $stmt->dim->class->getAttribute('resolvedName');
|
|
|
|
|
|
|
|
if ($resolved_name) {
|
|
|
|
$offset = $resolved_name . '::' . $stmt->dim->name;
|
|
|
|
}
|
2018-02-17 17:24:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $root_var_id && $offset !== null ? $root_var_id . '[' . $offset . ']' : null;
|
|
|
|
}
|
2018-01-14 18:09:40 +01:00
|
|
|
}
|
2016-12-28 20:20:16 +01:00
|
|
|
|
2018-05-09 03:21:22 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\PropertyFetch) {
|
2018-04-06 22:23:10 +02:00
|
|
|
$object_id = self::getArrayVarId($stmt->var, $this_class_name, $source);
|
|
|
|
|
|
|
|
if (!$object_id) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2018-05-09 03:21:22 +02:00
|
|
|
if ($stmt->name instanceof PhpParser\Node\Identifier) {
|
|
|
|
return $object_id . '->' . $stmt->name;
|
|
|
|
} elseif (isset($stmt->name->inferredType) && $stmt->name->inferredType->isSingleStringLiteral()) {
|
2018-08-09 03:31:13 +02:00
|
|
|
return $object_id . '->' . $stmt->name->inferredType->getSingleStringLiteral()->value;
|
2018-05-09 03:21:22 +02:00
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
2018-04-06 22:23:10 +02:00
|
|
|
}
|
|
|
|
|
2019-01-13 17:54:39 +01:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\ClassConstFetch
|
|
|
|
&& $stmt->name instanceof PhpParser\Node\Identifier
|
|
|
|
) {
|
|
|
|
/** @var string|null */
|
|
|
|
$resolved_name = $stmt->class->getAttribute('resolvedName');
|
|
|
|
|
|
|
|
if ($resolved_name) {
|
|
|
|
return $resolved_name . '::' . $stmt->name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-04-28 19:25:44 +02:00
|
|
|
if ($stmt instanceof PhpParser\Node\Expr\MethodCall
|
|
|
|
&& $stmt->name instanceof PhpParser\Node\Identifier
|
|
|
|
&& !$stmt->args
|
|
|
|
) {
|
|
|
|
$config = \Psalm\Config::getInstance();
|
|
|
|
|
|
|
|
if ($config->memoize_method_calls) {
|
|
|
|
$lhs_var_name = self::getArrayVarId(
|
|
|
|
$stmt->var,
|
|
|
|
$this_class_name,
|
|
|
|
$source
|
|
|
|
);
|
|
|
|
|
|
|
|
if (!$lhs_var_name) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $lhs_var_name . '->' . strtolower($stmt->name->name) . '()';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
return self::getVarId($stmt, $this_class_name, $source);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
/**
|
|
|
|
* @param Type\Union $return_type
|
2018-01-26 19:51:00 +01:00
|
|
|
* @param string|null $self_class
|
2018-11-23 19:24:35 +01:00
|
|
|
* @param string|Type\Atomic\TNamedObject|null $static_class_type
|
2018-01-14 18:09:40 +01:00
|
|
|
*
|
|
|
|
* @return Type\Union
|
|
|
|
*/
|
|
|
|
public static function fleshOutType(
|
2018-11-06 03:57:36 +01:00
|
|
|
Codebase $codebase,
|
2018-01-14 18:09:40 +01:00
|
|
|
Type\Union $return_type,
|
2018-01-26 19:51:00 +01:00
|
|
|
$self_class = null,
|
2018-11-23 19:24:35 +01:00
|
|
|
$static_class_type = null
|
2018-01-14 18:09:40 +01:00
|
|
|
) {
|
|
|
|
$return_type = clone $return_type;
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-14 18:09:40 +01:00
|
|
|
$new_return_type_parts = [];
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-01-09 21:05:48 +01:00
|
|
|
foreach ($return_type->getTypes() as $return_type_part) {
|
2017-07-29 21:05:06 +02:00
|
|
|
$new_return_type_parts[] = self::fleshOutAtomicType(
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2017-07-29 21:05:06 +02:00
|
|
|
$return_type_part,
|
2018-01-26 19:51:00 +01:00
|
|
|
$self_class,
|
2018-11-23 19:24:35 +01:00
|
|
|
$static_class_type
|
2017-07-29 21:05:06 +02:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-15 23:52:01 +01:00
|
|
|
$fleshed_out_type = new Type\Union($new_return_type_parts);
|
|
|
|
|
|
|
|
$fleshed_out_type->from_docblock = $return_type->from_docblock;
|
2017-05-10 18:49:59 +02:00
|
|
|
$fleshed_out_type->ignore_nullable_issues = $return_type->ignore_nullable_issues;
|
2018-01-25 00:52:58 +01:00
|
|
|
$fleshed_out_type->ignore_falsable_issues = $return_type->ignore_falsable_issues;
|
2018-03-17 21:53:11 +01:00
|
|
|
$fleshed_out_type->possibly_undefined = $return_type->possibly_undefined;
|
2018-01-12 05:18:13 +01:00
|
|
|
$fleshed_out_type->by_ref = $return_type->by_ref;
|
2018-08-07 20:43:05 +02:00
|
|
|
$fleshed_out_type->initialized = $return_type->initialized;
|
2017-01-15 23:52:01 +01:00
|
|
|
|
|
|
|
return $fleshed_out_type;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-02 04:27:52 +01:00
|
|
|
* @param Type\Atomic &$return_type
|
2018-01-26 19:51:00 +01:00
|
|
|
* @param string|null $self_class
|
2018-11-23 19:24:35 +01:00
|
|
|
* @param string|Type\Atomic\TNamedObject|null $static_class_type
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-01 19:14:35 +01:00
|
|
|
* @return Type\Atomic
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2018-01-26 19:51:00 +01:00
|
|
|
private static function fleshOutAtomicType(
|
2018-11-06 03:57:36 +01:00
|
|
|
Codebase $codebase,
|
2018-11-23 19:24:35 +01:00
|
|
|
Type\Atomic &$return_type,
|
2018-01-26 19:51:00 +01:00
|
|
|
$self_class,
|
2018-11-23 19:24:35 +01:00
|
|
|
$static_class_type = null
|
2017-07-29 21:05:06 +02:00
|
|
|
) {
|
2018-12-08 20:10:06 +01:00
|
|
|
if ($return_type instanceof TNamedObject
|
2019-02-22 03:40:06 +01:00
|
|
|
|| $return_type instanceof TTemplateParam
|
2018-12-08 20:10:06 +01:00
|
|
|
) {
|
2018-11-25 00:31:00 +01:00
|
|
|
if ($return_type->extra_types) {
|
|
|
|
$new_intersection_types = [];
|
|
|
|
|
|
|
|
foreach ($return_type->extra_types as &$extra_type) {
|
|
|
|
self::fleshOutAtomicType(
|
|
|
|
$codebase,
|
|
|
|
$extra_type,
|
|
|
|
$self_class,
|
|
|
|
$static_class_type
|
|
|
|
);
|
|
|
|
|
|
|
|
if ($extra_type instanceof TNamedObject && $extra_type->extra_types) {
|
|
|
|
$new_intersection_types = array_merge(
|
|
|
|
$new_intersection_types,
|
|
|
|
$extra_type->extra_types
|
|
|
|
);
|
|
|
|
$extra_type->extra_types = [];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($new_intersection_types) {
|
|
|
|
$return_type->extra_types = array_merge($return_type->extra_types, $new_intersection_types);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-08 20:10:06 +01:00
|
|
|
if ($return_type instanceof TNamedObject) {
|
|
|
|
$return_type_lc = strtolower($return_type->value);
|
2018-01-21 19:38:51 +01:00
|
|
|
|
2018-12-08 20:10:06 +01:00
|
|
|
if ($return_type_lc === 'static' || $return_type_lc === '$this') {
|
|
|
|
if (!$static_class_type) {
|
|
|
|
throw new \UnexpectedValueException(
|
|
|
|
'Cannot handle ' . $return_type->value . ' when $static_class is empty'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_string($static_class_type)) {
|
|
|
|
$return_type->value = $static_class_type;
|
|
|
|
} else {
|
|
|
|
$return_type = clone $static_class_type;
|
|
|
|
}
|
|
|
|
} elseif ($return_type_lc === 'self') {
|
|
|
|
if (!$self_class) {
|
|
|
|
throw new \UnexpectedValueException(
|
|
|
|
'Cannot handle ' . $return_type->value . ' when $self_class is empty'
|
|
|
|
);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2019-02-17 19:14:59 +01:00
|
|
|
$return_type->value = $self_class;
|
|
|
|
} elseif ($return_type_lc === 'parent') {
|
|
|
|
if (!$self_class) {
|
|
|
|
throw new \UnexpectedValueException(
|
|
|
|
'Cannot handle ' . $return_type->value . ' when $self_class is empty'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-12-08 20:10:06 +01:00
|
|
|
$return_type->value = $self_class;
|
2018-11-22 07:03:32 +01:00
|
|
|
} else {
|
2018-12-08 20:10:06 +01:00
|
|
|
$return_type->value = $codebase->classlikes->getUnAliasedName($return_type->value);
|
2018-11-22 07:03:32 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-21 06:46:56 +02:00
|
|
|
if ($return_type instanceof Type\Atomic\TScalarClassConstant) {
|
2018-08-09 02:59:21 +02:00
|
|
|
if ($return_type->fq_classlike_name === 'self' && $self_class) {
|
|
|
|
$return_type->fq_classlike_name = $self_class;
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
if ($codebase->classOrInterfaceExists($return_type->fq_classlike_name)) {
|
2018-08-09 05:12:12 +02:00
|
|
|
if (strtolower($return_type->const_name) === 'class') {
|
|
|
|
return new Type\Atomic\TLiteralClassString($return_type->fq_classlike_name);
|
|
|
|
}
|
|
|
|
|
2018-11-06 03:57:36 +01:00
|
|
|
$class_constants = $codebase->classlikes->getConstantsForClass(
|
2018-05-21 06:46:56 +02:00
|
|
|
$return_type->fq_classlike_name,
|
|
|
|
\ReflectionProperty::IS_PRIVATE
|
|
|
|
);
|
|
|
|
|
|
|
|
if (isset($class_constants[$return_type->const_name])) {
|
|
|
|
$const_type = $class_constants[$return_type->const_name];
|
|
|
|
|
|
|
|
if ($const_type->isSingle()) {
|
|
|
|
$const_type = clone $const_type;
|
|
|
|
|
|
|
|
return array_values($const_type->getTypes())[0];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-15 17:30:49 +01:00
|
|
|
return $return_type;
|
2018-05-21 06:46:56 +02:00
|
|
|
}
|
|
|
|
|
2017-01-15 01:06:58 +01:00
|
|
|
if ($return_type instanceof Type\Atomic\TArray || $return_type instanceof Type\Atomic\TGenericObject) {
|
2016-10-22 19:23:18 +02:00
|
|
|
foreach ($return_type->type_params as &$type_param) {
|
2018-01-26 19:51:00 +01:00
|
|
|
$type_param = self::fleshOutType(
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2018-01-26 19:51:00 +01:00
|
|
|
$type_param,
|
|
|
|
$self_class,
|
2018-11-23 19:24:35 +01:00
|
|
|
$static_class_type
|
2018-01-26 19:51:00 +01:00
|
|
|
);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2018-03-07 19:54:46 +01:00
|
|
|
} elseif ($return_type instanceof Type\Atomic\ObjectLike) {
|
|
|
|
foreach ($return_type->properties as &$property_type) {
|
|
|
|
$property_type = self::fleshOutType(
|
2018-11-06 03:57:36 +01:00
|
|
|
$codebase,
|
2018-03-07 19:54:46 +01:00
|
|
|
$property_type,
|
|
|
|
$self_class,
|
2018-11-23 19:24:35 +01:00
|
|
|
$static_class_type
|
2018-03-07 19:54:46 +01:00
|
|
|
);
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-01 19:14:35 +01:00
|
|
|
|
|
|
|
return $return_type;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr\Closure $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeClosureUses(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr\Closure $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2019-01-30 17:36:21 +01:00
|
|
|
$param_names = array_map(
|
|
|
|
function (PhpParser\Node\Param $p) : string {
|
|
|
|
if (!$p->var instanceof PhpParser\Node\Expr\Variable
|
|
|
|
|| !is_string($p->var->name)
|
|
|
|
) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
return $p->var->name;
|
|
|
|
},
|
|
|
|
$stmt->params
|
|
|
|
);
|
|
|
|
|
2016-11-01 19:14:35 +01:00
|
|
|
foreach ($stmt->uses as $use) {
|
2018-05-08 23:42:02 +02:00
|
|
|
if (!is_string($use->var->name)) {
|
2018-04-17 18:16:25 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$use_var_id = '$' . $use->var->name;
|
|
|
|
|
2019-01-30 17:36:21 +01:00
|
|
|
if (in_array($use->var->name, $param_names)) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new DuplicateParam(
|
|
|
|
'Closure use duplicates param name ' . $use_var_id,
|
|
|
|
new CodeLocation($statements_analyzer->getSource(), $use->var)
|
|
|
|
),
|
|
|
|
$statements_analyzer->getSuppressedIssues()
|
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$context->hasVariable($use_var_id, $statements_analyzer)) {
|
2018-05-08 23:43:26 +02:00
|
|
|
if ($use_var_id === '$argv' || $use_var_id === '$argc') {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2016-11-01 19:14:35 +01:00
|
|
|
if ($use->byRef) {
|
2017-02-08 00:09:12 +01:00
|
|
|
$context->vars_in_scope[$use_var_id] = Type::getMixed();
|
|
|
|
$context->vars_possibly_in_scope[$use_var_id] = true;
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (!$statements_analyzer->hasVariable($use_var_id)) {
|
|
|
|
$statements_analyzer->registerVariable(
|
2018-01-21 22:24:20 +01:00
|
|
|
$use_var_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer, $use->var),
|
2018-01-21 22:24:20 +01:00
|
|
|
null
|
|
|
|
);
|
2017-02-08 00:09:12 +01:00
|
|
|
}
|
2017-05-25 04:07:49 +02:00
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-05-08 23:43:26 +02:00
|
|
|
if (!isset($context->vars_possibly_in_scope[$use_var_id])) {
|
2016-11-01 19:14:35 +01:00
|
|
|
if ($context->check_variables) {
|
2017-12-06 06:35:41 +01:00
|
|
|
if (IssueBuffer::accepts(
|
2016-11-02 07:29:00 +01:00
|
|
|
new UndefinedVariable(
|
2017-02-08 00:09:12 +01:00
|
|
|
'Cannot find referenced variable ' . $use_var_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $use->var)
|
2017-12-06 06:35:41 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2017-12-06 06:35:41 +01:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
2018-05-08 23:43:26 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$first_appearance = $statements_analyzer->getFirstAppearance($use_var_id);
|
2018-05-08 23:43:26 +02:00
|
|
|
|
|
|
|
if ($first_appearance) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new PossiblyUndefinedVariable(
|
|
|
|
'Possibly undefined variable ' . $use_var_id . ', first seen on line ' .
|
|
|
|
$first_appearance->getLineNumber(),
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $use->var)
|
2018-05-08 23:43:26 +02:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-05-08 23:43:26 +02:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($context->check_variables) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new UndefinedVariable(
|
|
|
|
'Cannot find referenced variable ' . $use_var_id,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $use->var)
|
2018-05-08 23:43:26 +02:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2018-05-08 23:43:26 +02:00
|
|
|
)) {
|
|
|
|
return false;
|
2016-11-01 19:14:35 +01:00
|
|
|
}
|
2018-05-08 23:43:26 +02:00
|
|
|
|
|
|
|
continue;
|
2016-11-01 19:14:35 +01:00
|
|
|
}
|
2018-05-12 00:09:11 +02:00
|
|
|
} elseif ($use->byRef) {
|
2018-05-08 23:42:02 +02:00
|
|
|
foreach ($context->vars_in_scope[$use_var_id]->getTypes() as $atomic_type) {
|
|
|
|
if ($atomic_type instanceof Type\Atomic\TLiteralInt) {
|
|
|
|
$context->vars_in_scope[$use_var_id]->addType(new Type\Atomic\TInt);
|
|
|
|
} elseif ($atomic_type instanceof Type\Atomic\TLiteralFloat) {
|
|
|
|
$context->vars_in_scope[$use_var_id]->addType(new Type\Atomic\TFloat);
|
|
|
|
} elseif ($atomic_type instanceof Type\Atomic\TLiteralString) {
|
|
|
|
$context->vars_in_scope[$use_var_id]->addType(new Type\Atomic\TString);
|
2017-12-06 06:35:41 +01:00
|
|
|
}
|
2016-11-01 19:14:35 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|
2016-11-01 19:14:35 +01:00
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
return null;
|
|
|
|
}
|
2016-11-01 19:14:35 +01:00
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr\Yield_ $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeYield(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr\Yield_ $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2017-03-02 04:27:52 +01:00
|
|
|
$doc_comment_text = (string)$stmt->getDocComment();
|
|
|
|
|
2018-02-08 05:33:31 +01:00
|
|
|
$var_comments = [];
|
|
|
|
$var_comment_type = null;
|
2017-05-25 07:32:34 +02:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
2018-11-06 03:57:36 +01:00
|
|
|
|
2017-03-02 04:27:52 +01:00
|
|
|
if ($doc_comment_text) {
|
2017-11-15 03:43:31 +01:00
|
|
|
try {
|
2018-11-06 03:57:36 +01:00
|
|
|
$var_comments = CommentAnalyzer::getTypeFromComment(
|
2017-11-15 03:43:31 +01:00
|
|
|
$doc_comment_text,
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer,
|
|
|
|
$statements_analyzer->getAliases()
|
2017-11-15 03:43:31 +01:00
|
|
|
);
|
|
|
|
} catch (DocblockParseException $e) {
|
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidDocblock(
|
|
|
|
(string)$e->getMessage(),
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2017-11-15 03:43:31 +01:00
|
|
|
)
|
|
|
|
)) {
|
|
|
|
// fall through
|
|
|
|
}
|
|
|
|
}
|
2017-05-25 07:32:34 +02:00
|
|
|
|
2018-02-08 05:33:31 +01:00
|
|
|
foreach ($var_comments as $var_comment) {
|
2018-11-06 03:57:36 +01:00
|
|
|
$comment_type = ExpressionAnalyzer::fleshOutType(
|
|
|
|
$codebase,
|
2018-01-02 02:04:03 +01:00
|
|
|
$var_comment->type,
|
2018-01-26 19:51:00 +01:00
|
|
|
$context->self,
|
2018-11-23 19:24:35 +01:00
|
|
|
$context->self ? new Type\Atomic\TNamedObject($context->self) : null
|
2017-10-07 16:22:52 +02:00
|
|
|
);
|
|
|
|
|
2018-02-08 05:33:31 +01:00
|
|
|
if (!$var_comment->var_id) {
|
|
|
|
$var_comment_type = $comment_type;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-10-07 16:22:52 +02:00
|
|
|
$context->vars_in_scope[$var_comment->var_id] = $comment_type;
|
2017-05-25 07:32:34 +02:00
|
|
|
}
|
2017-03-02 04:27:52 +01:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
|
|
|
|
if ($stmt->key) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->key, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($stmt->value) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->value, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-02-08 05:33:31 +01:00
|
|
|
if ($var_comment_type) {
|
|
|
|
$stmt->inferredType = $var_comment_type;
|
2016-11-02 07:29:00 +01:00
|
|
|
} elseif (isset($stmt->value->inferredType)) {
|
2016-10-22 19:23:18 +02:00
|
|
|
$stmt->inferredType = $stmt->value->inferredType;
|
2016-11-02 07:29:00 +01:00
|
|
|
} else {
|
2016-10-22 19:23:18 +02:00
|
|
|
$stmt->inferredType = Type::getMixed();
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
} else {
|
2016-10-22 19:23:18 +02:00
|
|
|
$stmt->inferredType = Type::getNull();
|
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
|
2019-02-06 21:52:43 +01:00
|
|
|
$source = $statements_analyzer->getSource();
|
|
|
|
|
|
|
|
if ($source instanceof FunctionLikeAnalyzer
|
|
|
|
&& !($source->getSource() instanceof TraitAnalyzer)
|
|
|
|
) {
|
|
|
|
$source->addPossibleParamTypes($context, $codebase);
|
|
|
|
|
|
|
|
$storage = $source->getFunctionLikeStorage($statements_analyzer);
|
|
|
|
|
|
|
|
if ($storage->return_type) {
|
|
|
|
foreach ($storage->return_type->getTypes() as $atomic_return_type) {
|
|
|
|
if ($atomic_return_type instanceof Type\Atomic\TGenericObject
|
|
|
|
&& $atomic_return_type->value === 'Generator'
|
|
|
|
) {
|
|
|
|
if (!$atomic_return_type->type_params[2]->isMixed()
|
|
|
|
&& !$atomic_return_type->type_params[2]->isVoid()
|
|
|
|
) {
|
|
|
|
$stmt->inferredType = clone $atomic_return_type->type_params[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr\YieldFrom $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeYieldFrom(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr\YieldFrom $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($stmt->expr->inferredType)) {
|
2018-07-13 23:34:44 +02:00
|
|
|
$yield_from_type = null;
|
|
|
|
|
|
|
|
foreach ($stmt->expr->inferredType->getTypes() as $atomic_type) {
|
2019-02-09 21:48:15 +01:00
|
|
|
if ($yield_from_type === null) {
|
|
|
|
if ($atomic_type instanceof Type\Atomic\TGenericObject
|
|
|
|
&& strtolower($atomic_type->value) === 'generator'
|
|
|
|
&& isset($atomic_type->type_params[3])
|
|
|
|
) {
|
|
|
|
$yield_from_type = clone $atomic_type->type_params[3];
|
|
|
|
} elseif ($atomic_type instanceof Type\Atomic\TArray) {
|
|
|
|
$yield_from_type = clone $atomic_type->type_params[1];
|
|
|
|
} elseif ($atomic_type instanceof Type\Atomic\ObjectLike) {
|
|
|
|
$yield_from_type = $atomic_type->getGenericValueType();
|
|
|
|
}
|
2018-07-13 23:34:44 +02:00
|
|
|
} else {
|
|
|
|
$yield_from_type = Type::getMixed();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-15 04:29:15 +01:00
|
|
|
// this should be whatever the generator above returns, but *not* the return type
|
2018-07-13 23:34:44 +02:00
|
|
|
$stmt->inferredType = $yield_from_type ?: Type::getMixed();
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
2016-11-02 07:29:00 +01:00
|
|
|
|
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr\BooleanNot $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeBooleanNot(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr\BooleanNot $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2016-11-05 22:53:30 +01:00
|
|
|
$stmt->inferredType = Type::getBool();
|
2016-12-28 22:29:50 +01:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2016-12-28 22:29:50 +01:00
|
|
|
return false;
|
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Expr\Empty_ $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2017-12-05 18:14:10 +01:00
|
|
|
* @return void
|
2016-11-02 07:29:00 +01:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeEmpty(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Expr\Empty_ $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeIssetVar($statements_analyzer, $stmt->expr, $context);
|
2018-04-09 16:19:23 +02:00
|
|
|
$stmt->inferredType = Type::getBool();
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2016-11-02 07:29:00 +01:00
|
|
|
* @param PhpParser\Node\Scalar\Encapsed $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2016-11-02 07:29:00 +01:00
|
|
|
* @return false|null
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2017-01-07 21:09:47 +01:00
|
|
|
protected static function analyzeEncapsulatedString(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2016-11-02 07:29:00 +01:00
|
|
|
PhpParser\Node\Scalar\Encapsed $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2017-09-03 01:48:59 +02:00
|
|
|
$function_storage = null;
|
|
|
|
|
2019-02-02 17:28:48 +01:00
|
|
|
if ($context->infer_types) {
|
2018-11-11 18:01:14 +01:00
|
|
|
$source_analyzer = $statements_analyzer->getSource();
|
2017-09-03 01:48:59 +02:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if ($source_analyzer instanceof FunctionLikeAnalyzer) {
|
|
|
|
$function_storage = $source_analyzer->getFunctionLikeStorage($statements_analyzer);
|
2017-09-03 01:48:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
/** @var PhpParser\Node\Expr $part */
|
|
|
|
foreach ($stmt->parts as $part) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $part, $context) === false) {
|
2016-10-22 19:23:18 +02:00
|
|
|
return false;
|
|
|
|
}
|
2017-09-03 01:48:59 +02:00
|
|
|
|
2019-02-02 20:16:49 +01:00
|
|
|
if ($function_storage
|
|
|
|
&& $part instanceof PhpParser\Node\Expr\Variable
|
|
|
|
&& is_string($part->name)
|
|
|
|
&& isset($part->inferredType)
|
|
|
|
) {
|
2019-02-02 18:10:52 +01:00
|
|
|
$context->inferType(
|
2019-02-02 20:16:49 +01:00
|
|
|
$part->name,
|
2019-02-02 18:10:52 +01:00
|
|
|
$function_storage,
|
2019-02-02 20:16:49 +01:00
|
|
|
$part->inferredType,
|
2019-02-02 18:10:52 +01:00
|
|
|
new Type\Union([new Type\Atomic\TString, new Type\Atomic\TInt, new Type\Atomic\TFloat]),
|
|
|
|
$statements_analyzer->getCodebase()
|
|
|
|
);
|
2017-09-03 01:48:59 +02:00
|
|
|
}
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = Type::getString();
|
2017-05-25 04:07:49 +02:00
|
|
|
|
2016-11-02 07:29:00 +01:00
|
|
|
return null;
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
|
2017-01-15 19:58:20 +01:00
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2017-01-15 19:58:20 +01:00
|
|
|
* @param PhpParser\Node\Expr\Isset_ $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2017-01-15 19:58:20 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
protected static function analyzeIsset(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2017-01-15 19:58:20 +01:00
|
|
|
PhpParser\Node\Expr\Isset_ $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
|
|
|
foreach ($stmt->vars as $isset_var) {
|
2018-04-17 18:16:25 +02:00
|
|
|
if ($isset_var instanceof PhpParser\Node\Expr\PropertyFetch
|
|
|
|
&& $isset_var->var instanceof PhpParser\Node\Expr\Variable
|
|
|
|
&& $isset_var->var->name === 'this'
|
|
|
|
&& $isset_var->name instanceof PhpParser\Node\Identifier
|
2017-01-15 19:58:20 +01:00
|
|
|
) {
|
2018-04-17 18:16:25 +02:00
|
|
|
$var_id = '$this->' . $isset_var->name->name;
|
2017-04-28 22:41:54 +02:00
|
|
|
|
|
|
|
if (!isset($context->vars_in_scope[$var_id])) {
|
|
|
|
$context->vars_in_scope[$var_id] = Type::getMixed();
|
|
|
|
$context->vars_possibly_in_scope[$var_id] = true;
|
|
|
|
}
|
2017-01-15 19:58:20 +01:00
|
|
|
}
|
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
self::analyzeIssetVar($statements_analyzer, $isset_var, $context);
|
2017-01-15 19:58:20 +01:00
|
|
|
}
|
2018-04-09 16:20:13 +02:00
|
|
|
|
|
|
|
$stmt->inferredType = Type::getBool();
|
2017-01-15 19:58:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2017-01-15 19:58:20 +01:00
|
|
|
* @param PhpParser\Node\Expr $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2018-01-10 01:33:39 +01:00
|
|
|
* @return false|null
|
2017-01-15 19:58:20 +01:00
|
|
|
*/
|
|
|
|
protected static function analyzeIssetVar(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2017-01-15 19:58:20 +01:00
|
|
|
PhpParser\Node\Expr $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2018-05-01 04:13:13 +02:00
|
|
|
|
2018-01-10 01:33:39 +01:00
|
|
|
$context->inside_isset = true;
|
2017-01-15 19:58:20 +01:00
|
|
|
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt, $context) === false) {
|
2018-01-10 01:33:39 +01:00
|
|
|
return false;
|
2017-01-15 19:58:20 +01:00
|
|
|
}
|
2018-01-10 01:33:39 +01:00
|
|
|
|
|
|
|
$context->inside_isset = false;
|
2017-01-15 19:58:20 +01:00
|
|
|
}
|
|
|
|
|
2017-01-16 18:59:09 +01:00
|
|
|
/**
|
2018-11-11 18:01:14 +01:00
|
|
|
* @param StatementsAnalyzer $statements_analyzer
|
2017-01-16 18:59:09 +01:00
|
|
|
* @param PhpParser\Node\Expr\Clone_ $stmt
|
|
|
|
* @param Context $context
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2017-01-16 18:59:09 +01:00
|
|
|
* @return false|null
|
|
|
|
*/
|
|
|
|
protected static function analyzeClone(
|
2018-11-11 18:01:14 +01:00
|
|
|
StatementsAnalyzer $statements_analyzer,
|
2017-01-16 18:59:09 +01:00
|
|
|
PhpParser\Node\Expr\Clone_ $stmt,
|
|
|
|
Context $context
|
|
|
|
) {
|
2018-11-11 18:01:14 +01:00
|
|
|
if (self::analyze($statements_analyzer, $stmt->expr, $context) === false) {
|
2017-01-16 18:59:09 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($stmt->expr->inferredType)) {
|
2018-01-09 21:05:48 +01:00
|
|
|
foreach ($stmt->expr->inferredType->getTypes() as $clone_type_part) {
|
2018-04-20 16:52:23 +02:00
|
|
|
if (!$clone_type_part instanceof TNamedObject
|
|
|
|
&& !$clone_type_part instanceof TObject
|
|
|
|
&& !$clone_type_part instanceof TMixed
|
2019-02-22 03:40:06 +01:00
|
|
|
&& !$clone_type_part instanceof TTemplateParam
|
2017-01-19 21:00:05 +01:00
|
|
|
) {
|
2017-01-16 18:59:09 +01:00
|
|
|
if (IssueBuffer::accepts(
|
|
|
|
new InvalidClone(
|
|
|
|
'Cannot clone ' . $clone_type_part,
|
2018-11-11 18:01:14 +01:00
|
|
|
new CodeLocation($statements_analyzer->getSource(), $stmt)
|
2017-01-16 18:59:09 +01:00
|
|
|
),
|
2018-11-11 18:01:14 +01:00
|
|
|
$statements_analyzer->getSuppressedIssues()
|
2017-01-16 18:59:09 +01:00
|
|
|
)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$stmt->inferredType = $stmt->expr->inferredType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-22 19:23:18 +02:00
|
|
|
/**
|
2016-11-07 23:29:51 +01:00
|
|
|
* @param string $fq_class_name
|
2017-05-27 02:16:18 +02:00
|
|
|
*
|
2017-05-25 04:07:49 +02:00
|
|
|
* @return bool
|
2016-10-22 19:23:18 +02:00
|
|
|
*/
|
2016-11-07 23:29:51 +01:00
|
|
|
public static function isMock($fq_class_name)
|
2016-10-22 19:23:18 +02:00
|
|
|
{
|
2018-12-18 05:29:27 +01:00
|
|
|
return in_array(strtolower($fq_class_name), Config::getInstance()->getMockClasses(), true);
|
2016-10-22 19:23:18 +02:00
|
|
|
}
|
|
|
|
}
|