2020-05-18 21:13:27 +02:00
|
|
|
<?php
|
|
|
|
namespace Psalm\Internal\Analyzer\Statements\Expression;
|
|
|
|
|
|
|
|
use PhpParser;
|
|
|
|
use Psalm\CodeLocation;
|
|
|
|
use Psalm\Context;
|
2021-07-03 10:01:53 +02:00
|
|
|
use Psalm\Internal\Analyzer\FunctionAnalyzer;
|
|
|
|
use Psalm\Internal\Analyzer\MethodAnalyzer;
|
2021-06-08 04:55:21 +02:00
|
|
|
use Psalm\Internal\Analyzer\StatementsAnalyzer;
|
2020-05-18 21:13:27 +02:00
|
|
|
use Psalm\Issue\UndefinedConstant;
|
|
|
|
use Psalm\IssueBuffer;
|
|
|
|
use Psalm\Type;
|
|
|
|
|
|
|
|
class MagicConstAnalyzer
|
|
|
|
{
|
|
|
|
public static function analyze(
|
|
|
|
StatementsAnalyzer $statements_analyzer,
|
|
|
|
PhpParser\Node\Scalar\MagicConst $stmt,
|
|
|
|
Context $context
|
|
|
|
) : void {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Line) {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getInt());
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Class_) {
|
|
|
|
$codebase = $statements_analyzer->getCodebase();
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getClassString());
|
|
|
|
} else {
|
|
|
|
if ($codebase->alter_code) {
|
|
|
|
$codebase->classlikes->handleClassLikeReferenceInMigration(
|
|
|
|
$codebase,
|
|
|
|
$statements_analyzer,
|
|
|
|
$stmt,
|
|
|
|
$context->self,
|
|
|
|
$context->calling_method_id
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getLiteralClassString($context->self));
|
|
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\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
|
|
|
|
}
|
|
|
|
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getString($namespace));
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Method
|
|
|
|
|| $stmt instanceof PhpParser\Node\Scalar\MagicConst\Function_
|
|
|
|
) {
|
|
|
|
$source = $statements_analyzer->getSource();
|
2021-07-03 10:01:53 +02:00
|
|
|
if ($source instanceof MethodAnalyzer) {
|
|
|
|
if ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Function_) {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getString($source->getMethodName()));
|
|
|
|
} else {
|
|
|
|
$statements_analyzer->node_data->setType(
|
|
|
|
$stmt,
|
|
|
|
Type::getString($source->getCorrectlyCasedMethodId())
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} elseif ($source instanceof FunctionAnalyzer) {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getString($source->getCorrectlyCasedMethodId()));
|
2020-05-18 21:13:27 +02:00
|
|
|
} else {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, new Type\Union([new Type\Atomic\TCallableString]));
|
|
|
|
}
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\File
|
|
|
|
|| $stmt instanceof PhpParser\Node\Scalar\MagicConst\Dir
|
|
|
|
) {
|
2020-05-28 00:21:26 +02:00
|
|
|
$statements_analyzer->node_data->setType($stmt, new Type\Union([new Type\Atomic\TNonEmptyString()]));
|
|
|
|
} elseif ($stmt instanceof PhpParser\Node\Scalar\MagicConst\Trait_) {
|
2020-05-28 01:23:46 +02:00
|
|
|
if ($statements_analyzer->getSource() instanceof \Psalm\Internal\Analyzer\TraitAnalyzer) {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, new Type\Union([new Type\Atomic\TNonEmptyString()]));
|
|
|
|
} else {
|
|
|
|
$statements_analyzer->node_data->setType($stmt, Type::getString());
|
|
|
|
}
|
2020-05-18 21:13:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|