2017-03-01 23:41:18 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types = 1);
|
|
|
|
|
|
|
|
namespace LanguageServer;
|
|
|
|
|
2017-03-02 00:14:13 +00:00
|
|
|
use LanguageServer\Protocol\TolerantSymbolInformation;
|
2017-03-01 23:41:18 +00:00
|
|
|
use PhpParser\Node;
|
|
|
|
use PhpParser\PrettyPrinter\Standard as PrettyPrinter;
|
2017-03-05 04:56:01 +00:00
|
|
|
use phpDocumentor\Reflection\{
|
2017-03-06 04:22:13 +00:00
|
|
|
DocBlock, DocBlockFactory, Types, Type, Fqsen, TypeResolver
|
2017-03-05 04:56:01 +00:00
|
|
|
};
|
2017-03-01 23:41:18 +00:00
|
|
|
use LanguageServer\Protocol\SymbolInformation;
|
|
|
|
use LanguageServer\Index\ReadableIndex;
|
2017-03-05 04:56:01 +00:00
|
|
|
use Microsoft\PhpParser as Tolerant;
|
2017-03-01 23:41:18 +00:00
|
|
|
|
|
|
|
class TolerantDefinitionResolver implements DefinitionResolverInterface
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \LanguageServer\Index\ReadableIndex
|
|
|
|
*/
|
2017-03-07 00:08:06 +00:00
|
|
|
protected $index;
|
2017-03-01 23:41:18 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \phpDocumentor\Reflection\TypeResolver
|
|
|
|
*/
|
|
|
|
private $typeResolver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var \PhpParser\PrettyPrinterAbstract
|
|
|
|
*/
|
|
|
|
private $prettyPrinter;
|
|
|
|
|
2017-03-07 05:31:13 +00:00
|
|
|
/**
|
|
|
|
* @var DocBlockFactory
|
|
|
|
*/
|
|
|
|
private $docBlockFactory;
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* @param ReadableIndex $index
|
|
|
|
*/
|
|
|
|
public function __construct(ReadableIndex $index)
|
|
|
|
{
|
|
|
|
$this->index = $index;
|
|
|
|
$this->typeResolver = new TypeResolver;
|
|
|
|
$this->prettyPrinter = new PrettyPrinter;
|
2017-03-07 05:31:13 +00:00
|
|
|
$this->docBlockFactory = DocBlockFactory::createInstance();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-03-05 04:56:01 +00:00
|
|
|
* Builds the declaration line for a given node.
|
2017-03-01 23:41:18 +00:00
|
|
|
*
|
2017-03-05 04:56:01 +00:00
|
|
|
*
|
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return string
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function getDeclarationLineFromNode($node): string
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-05 04:56:01 +00:00
|
|
|
// TODO Tolerant\Node\Statement\FunctionStaticDeclaration::class
|
|
|
|
|
|
|
|
// we should have a better way of determining whether something is a property or constant
|
|
|
|
// If part of a declaration list -> get the parent declaration
|
|
|
|
if (
|
|
|
|
// PropertyDeclaration // public $a, $b, $c;
|
|
|
|
$node instanceof Tolerant\Node\Expression\Variable &&
|
|
|
|
($propertyDeclaration = $node->getFirstAncestor(Tolerant\Node\PropertyDeclaration::class)) !== null
|
|
|
|
) {
|
|
|
|
$defLine = $propertyDeclaration->getText();
|
|
|
|
$defLineStart = $propertyDeclaration->getStart();
|
|
|
|
|
|
|
|
$defLine = \substr_replace(
|
|
|
|
$defLine,
|
|
|
|
$node->getFullText(),
|
|
|
|
$propertyDeclaration->propertyElements->getFullStart() - $defLineStart,
|
2017-03-06 04:22:13 +00:00
|
|
|
$propertyDeclaration->propertyElements->getFullWidth()
|
2017-03-05 04:56:01 +00:00
|
|
|
);
|
|
|
|
} elseif (
|
|
|
|
// ClassConstDeclaration or ConstDeclaration // const A = 1, B = 2;
|
|
|
|
$node instanceof Tolerant\Node\ConstElement &&
|
|
|
|
($constDeclaration = $node->getFirstAncestor(Tolerant\Node\Statement\ConstDeclaration::class, Tolerant\Node\ClassConstDeclaration::class))
|
|
|
|
) {
|
|
|
|
$defLine = $constDeclaration->getText();
|
|
|
|
$defLineStart = $constDeclaration->getStart();
|
|
|
|
|
|
|
|
$defLine = \substr_replace(
|
|
|
|
$defLine,
|
|
|
|
$node->getFullText(),
|
|
|
|
$constDeclaration->constElements->getFullStart() - $defLineStart,
|
2017-03-06 04:22:13 +00:00
|
|
|
$constDeclaration->constElements->getFullWidth()
|
2017-03-05 04:56:01 +00:00
|
|
|
);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
|
|
|
|
// Get the current node
|
|
|
|
else {
|
|
|
|
$defLine = $node->getText();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
|
|
|
|
$defLine = \strtok($defLine, "\n");
|
2017-03-06 04:22:13 +00:00
|
|
|
$defLine = \strtok($defLine, "\r");
|
2017-03-05 04:56:01 +00:00
|
|
|
|
|
|
|
return $defLine;
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the documentation string for a node, if it has one
|
|
|
|
*
|
2017-03-05 04:56:01 +00:00
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return string|null
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function getDocumentationFromNode($node)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-05 04:56:01 +00:00
|
|
|
// For properties and constants, set the node to the declaration node, rather than the individual property.
|
|
|
|
// This is because they get defined as part of a list.
|
|
|
|
$constOrPropertyDeclaration = $node->getFirstAncestor(
|
|
|
|
Tolerant\Node\PropertyDeclaration::class,
|
|
|
|
Tolerant\Node\Statement\ConstDeclaration::class,
|
|
|
|
Tolerant\Node\ClassConstDeclaration::class
|
|
|
|
);
|
|
|
|
if ($constOrPropertyDeclaration !== null) {
|
|
|
|
$node = $constOrPropertyDeclaration;
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
|
|
|
|
// For parameters, parse the documentation to get the parameter tag.
|
|
|
|
if ($node instanceof Tolerant\Node\Parameter) {
|
|
|
|
$functionLikeDeclaration = $this->getFunctionLikeDeclarationFromParameter($node);
|
2017-03-06 04:22:13 +00:00
|
|
|
$variableName = substr($node->variableName->getText($node->getFileContents()), 1);
|
2017-03-05 04:56:01 +00:00
|
|
|
$docBlock = $this->getDocBlock($functionLikeDeclaration);
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($docBlock !== null) {
|
2017-03-05 04:56:01 +00:00
|
|
|
$parameterDocBlockTag = $this->getDocBlockTagForParameter($docBlock, $variableName);
|
|
|
|
return $parameterDocBlockTag !== null ? $parameterDocBlockTag->getDescription()->render() : null;
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
}
|
|
|
|
// for everything else, get the doc block summary corresponding to the current node.
|
|
|
|
else {
|
|
|
|
$docBlock = $this->getDocBlock($node);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($docBlock !== null) {
|
|
|
|
return $docBlock->getSummary();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 04:56:01 +00:00
|
|
|
function getDocBlock(Tolerant\Node $node) {
|
2017-03-07 05:31:13 +00:00
|
|
|
// TODO make more efficient
|
|
|
|
$namespaceDefinition = $node->getNamespaceDefinition();
|
|
|
|
$context = null;
|
|
|
|
if ($namespaceDefinition !== null && $namespaceDefinition->name !== null) {
|
|
|
|
$name = (string)$namespaceDefinition->name->getNamespacedName();
|
|
|
|
list($namespaceImportTable,,) = $namespaceDefinition->name->getImportTablesForCurrentScope($namespaceDefinition);
|
|
|
|
foreach ($namespaceImportTable as $alias=>$name) {
|
|
|
|
$namespaceImportTable[$alias] = (string)$name;
|
|
|
|
}
|
|
|
|
$context = new Types\Context($name, $namespaceImportTable);
|
|
|
|
}
|
|
|
|
|
2017-03-05 04:56:01 +00:00
|
|
|
$docCommentText = $node->getDocCommentText();
|
2017-03-15 21:10:52 +00:00
|
|
|
if ($docCommentText !== null) {
|
|
|
|
try {
|
|
|
|
return $this->docBlockFactory->create($docCommentText, $context);
|
|
|
|
} catch (\InvalidArgumentException $e) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
2017-03-05 04:56:01 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* Create a Definition for a definition node
|
|
|
|
*
|
2017-03-05 04:56:01 +00:00
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @param string $fqn
|
|
|
|
* @return Definition
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function createDefinitionFromNode($node, string $fqn = null): Definition
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
|
|
|
$def = new Definition;
|
2017-03-05 04:56:01 +00:00
|
|
|
|
|
|
|
// this determines whether the suggestion will show after "new"
|
2017-03-06 07:23:33 +00:00
|
|
|
// TODO name
|
2017-04-10 19:29:58 +00:00
|
|
|
$def->canBeInstantiated = $node instanceof Tolerant\Node\Statement\ClassDeclaration;
|
2017-03-05 04:56:01 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
$def->isGlobal = (
|
2017-03-05 04:56:01 +00:00
|
|
|
$node instanceof Tolerant\Node\Statement\InterfaceDeclaration
|
|
|
|
|| $node instanceof Tolerant\Node\Statement\ClassDeclaration
|
|
|
|
|| $node instanceof Tolerant\Node\Statement\TraitDeclaration
|
|
|
|
|
2017-03-06 07:23:33 +00:00
|
|
|
// TODO namespaces?
|
2017-03-05 04:56:01 +00:00
|
|
|
|| $node instanceof Tolerant\Node\Statement\NamespaceDefinition && $node->name !== null
|
|
|
|
|
|
|
|
|| $node instanceof Tolerant\Node\Statement\FunctionDeclaration
|
|
|
|
|
|
|
|
|| $node instanceof Tolerant\Node\Statement\ConstDeclaration
|
2017-03-06 07:23:33 +00:00
|
|
|
// || $node instanceof Tolerant\Node\ClassConstDeclaration
|
2017-03-01 23:41:18 +00:00
|
|
|
);
|
2017-03-05 04:56:01 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
$def->isStatic = (
|
2017-03-05 04:56:01 +00:00
|
|
|
($node instanceof Tolerant\Node\MethodDeclaration && $node->isStatic())
|
|
|
|
|| ($node instanceof Tolerant\Node\Expression\Variable &&
|
|
|
|
($propertyDeclaration = $node->getFirstAncestor(Tolerant\Node\PropertyDeclaration::class)) !== null &&
|
|
|
|
$propertyDeclaration->isStatic())
|
2017-03-01 23:41:18 +00:00
|
|
|
);
|
|
|
|
$def->fqn = $fqn;
|
2017-03-05 04:56:01 +00:00
|
|
|
if ($node instanceof Tolerant\Node\Statement\ClassDeclaration) {
|
|
|
|
if ($node->classBaseClause !== null && $node->classBaseClause->baseClass !== null) {
|
2017-03-15 21:10:52 +00:00
|
|
|
$def->extends = [];
|
2017-03-06 23:34:43 +00:00
|
|
|
$def->extends[] = (string)$node->classBaseClause->baseClass->getResolvedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
// TODO what about class interfaces
|
|
|
|
} else if ($node instanceof Tolerant\Node\Statement\InterfaceDeclaration) {
|
|
|
|
if ($node->interfaceBaseClause !== null && $node->interfaceBaseClause->interfaceNameList !== null) {
|
2017-03-15 21:10:52 +00:00
|
|
|
$def->extends = [];
|
2017-03-06 23:34:43 +00:00
|
|
|
foreach ($node->interfaceBaseClause->interfaceNameList->getValues() as $n) {
|
2017-03-15 21:10:52 +00:00
|
|
|
$def->extends[] = $n->getText() ?? $n->getText($node->getFileContents());
|
2017-03-05 04:56:01 +00:00
|
|
|
}
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-15 21:10:52 +00:00
|
|
|
|
2017-03-02 00:14:13 +00:00
|
|
|
$def->symbolInformation = TolerantSymbolInformation::fromNode($node, $fqn);
|
2017-03-15 21:10:52 +00:00
|
|
|
|
|
|
|
if ($def->symbolInformation !== null) {
|
|
|
|
$def->type = $this->getTypeFromNode($node); //TODO
|
|
|
|
$def->declarationLine = $this->getDeclarationLineFromNode($node);
|
|
|
|
$def->documentation = $this->getDocumentationFromNode($node);
|
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
return $def;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given any node, returns the Definition object of the symbol that is referenced
|
|
|
|
*
|
2017-03-06 04:22:13 +00:00
|
|
|
* @param Tolerant\Node $node Any reference node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return Definition|null
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function resolveReferenceNodeToDefinition($node)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-15 21:10:52 +00:00
|
|
|
$parent = $node->parent;
|
2017-03-01 23:41:18 +00:00
|
|
|
// Variables are not indexed globally, as they stay in the file scope anyway
|
2017-03-06 19:01:10 +00:00
|
|
|
if ($node instanceof Tolerant\Node\Expression\Variable && !($parent instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve $this
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($node->getName() === 'this' && $fqn = $this->getContainingClassFqn($node)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return $this->index->getDefinition($fqn, false);
|
|
|
|
}
|
2017-03-09 23:56:41 +00:00
|
|
|
// TODO running through thid for class constants or properties
|
2017-03-06 07:23:33 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve the variable to a definition node (assignment, param or closure use)
|
2017-03-06 07:23:33 +00:00
|
|
|
$defNode = $this->resolveVariableToNode($node);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($defNode === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return $this->createDefinitionFromNode($defNode);
|
|
|
|
}
|
|
|
|
// Other references are references to a global symbol that have an FQN
|
|
|
|
// Find out the FQN
|
|
|
|
$fqn = $this->resolveReferenceNodeToFqn($node);
|
|
|
|
if ($fqn === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// If the node is a function or constant, it could be namespaced, but PHP falls back to global
|
|
|
|
// http://php.net/manual/en/language.namespaces.fallback.php
|
2017-03-09 23:56:41 +00:00
|
|
|
$globalFallback = $this->isConstantFetch($node) || $node->parent instanceof Tolerant\Node\Expression\CallExpression;
|
2017-03-01 23:41:18 +00:00
|
|
|
// Return the Definition object from the index index
|
|
|
|
return $this->index->getDefinition($fqn, $globalFallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given any node, returns the FQN of the symbol that is referenced
|
|
|
|
* Returns null if the FQN could not be resolved or the reference node references a variable
|
|
|
|
*
|
|
|
|
* @param Node $node
|
|
|
|
* @return string|null
|
|
|
|
*/
|
2017-03-06 07:23:33 +00:00
|
|
|
public function resolveReferenceNodeToFqn($node) {
|
2017-03-15 21:10:52 +00:00
|
|
|
$parent = $node->parent;
|
2017-03-06 07:23:33 +00:00
|
|
|
// TODO all name tokens should be a part of a node
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($node instanceof Tolerant\Node\QualifiedName) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// For extends, implements, type hints and classes of classes of static calls use the name directly
|
2017-03-07 00:08:06 +00:00
|
|
|
$name = $node->getResolvedName();
|
|
|
|
|
2017-03-06 04:22:13 +00:00
|
|
|
if (($useClause = $node->getFirstAncestor(Tolerant\Node\NamespaceUseGroupClause::class, Tolerant\Node\Statement\NamespaceUseDeclaration::class)) !== null) {
|
2017-03-07 00:08:06 +00:00
|
|
|
$name = (string)($name ?? $node->getText());
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($useClause instanceof Tolerant\Node\NamespaceUseGroupClause) {
|
|
|
|
$prefix = $useClause->parent->parent->namespaceName;
|
|
|
|
$prefix = $prefix === null ? "" : $prefix->getText();
|
|
|
|
|
|
|
|
$name = $prefix . "\\" . $name;
|
|
|
|
|
|
|
|
if ($useClause->functionOrConst === null) {
|
|
|
|
$useClause = $node->getFirstAncestor(Tolerant\Node\Statement\NamespaceUseDeclaration::class);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-09 23:56:41 +00:00
|
|
|
if ($useClause->functionOrConst !== null && $useClause->functionOrConst->kind === Tolerant\TokenKind::FunctionKeyword) {
|
2017-03-06 07:23:33 +00:00
|
|
|
$name .= '()';
|
2017-03-06 04:22:13 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-07 00:08:06 +00:00
|
|
|
else {
|
|
|
|
$name = (string)($name ?? (string)$node->getNamespacedName());
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
2017-03-06 19:07:05 +00:00
|
|
|
if ($node->parent instanceof Tolerant\Node\Expression\CallExpression) {
|
2017-03-06 07:23:33 +00:00
|
|
|
$name .= '()';
|
|
|
|
}
|
|
|
|
// does this work for function calls?
|
2017-03-06 04:22:13 +00:00
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
/*elseif ($node instanceof Tolerant\Node\Expression\CallExpression || ($node = $node->getFirstAncestor(Tolerant\Node\Expression\CallExpression::class)) !== null) {
|
|
|
|
if ($node->callableExpression instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression) {
|
|
|
|
$qualifier = $node->callableExpression->scopeResolutionQualifier;
|
|
|
|
if ($qualifier instanceof Tolerant\Token) {
|
|
|
|
// resolve this/self/parent
|
|
|
|
} elseif ($qualifier instanceof Tolerant\Node\QualifiedName) {
|
|
|
|
$name = $qualifier->getResolvedName() ?? $qualifier->getNamespacedName();
|
|
|
|
$name .= "::";
|
|
|
|
$memberName = $node->callableExpression->memberName;
|
|
|
|
if ($memberName instanceof Tolerant\Token) {
|
|
|
|
$name .= $memberName->getText($node->getFileContents());
|
|
|
|
} elseif ($memberName instanceof Tolerant\Node\Expression\Variable) {
|
|
|
|
$name .= $memberName->getText();
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
$name .= "()";
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
|
2017-03-28 21:02:26 +00:00
|
|
|
else if (
|
2017-03-29 17:45:38 +00:00
|
|
|
($node instanceof Tolerant\Node\Expression\CallExpression &&
|
|
|
|
($access = $node->callableExpression) instanceof Tolerant\Node\Expression\MemberAccessExpression) || (
|
|
|
|
($access = $node) instanceof Tolerant\Node\Expression\MemberAccessExpression)
|
|
|
|
) {
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($access->memberName instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Cannot get definition if right-hand side is expression
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
// Get the type of the left-hand expression
|
2017-03-06 04:22:13 +00:00
|
|
|
$varType = $this->resolveExpressionNodeToType($access->dereferencableExpression);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($varType instanceof Types\Compound) {
|
|
|
|
// For compound types, use the first FQN we find
|
|
|
|
// (popular use case is ClassName|null)
|
|
|
|
for ($i = 0; $t = $varType->get($i); $i++) {
|
|
|
|
if (
|
|
|
|
$t instanceof Types\This
|
|
|
|
|| $t instanceof Types\Object_
|
|
|
|
|| $t instanceof Types\Static_
|
|
|
|
|| $t instanceof Types\Self_
|
|
|
|
) {
|
|
|
|
$varType = $t;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (
|
|
|
|
$varType instanceof Types\This
|
|
|
|
|| $varType instanceof Types\Static_
|
|
|
|
|| $varType instanceof Types\Self_
|
|
|
|
) {
|
|
|
|
// $this/static/self is resolved to the containing class
|
|
|
|
$classFqn = self::getContainingClassFqn($node);
|
|
|
|
} else if (!($varType instanceof Types\Object_) || $varType->getFqsen() === null) {
|
|
|
|
// Left-hand expression could not be resolved to a class
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
$classFqn = substr((string)$varType->getFqsen(), 1);
|
2017-03-07 05:31:13 +00:00
|
|
|
|
|
|
|
// TODO
|
|
|
|
// $classFqn = $node->getNamespaceDefinition()->name->getNamespacedName() . (string)$varType->getFqsen();
|
2017-03-09 23:56:41 +00:00
|
|
|
// var_dump($classFqn);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
$memberSuffix = '->' . (string)($access->memberName->getText() ?? $access->memberName->getText($node->getFileContents()));
|
|
|
|
if ($node instanceof Tolerant\Node\Expression\CallExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
$memberSuffix .= '()';
|
|
|
|
}
|
|
|
|
// Find the right class that implements the member
|
|
|
|
$implementorFqns = [$classFqn];
|
2017-03-06 23:34:43 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
while ($implementorFqn = array_shift($implementorFqns)) {
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($implementorFqn . $memberSuffix);
|
2017-03-01 23:41:18 +00:00
|
|
|
// If the member FQN exists, return it
|
|
|
|
if ($this->index->getDefinition($implementorFqn . $memberSuffix)) {
|
2017-03-06 23:34:43 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
return $implementorFqn . $memberSuffix;
|
|
|
|
}
|
|
|
|
// Get Definition of implementor class
|
|
|
|
$implementorDef = $this->index->getDefinition($implementorFqn);
|
|
|
|
// If it doesn't exist, return the initial guess
|
|
|
|
if ($implementorDef === null) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Repeat for parent class
|
|
|
|
if ($implementorDef->extends) {
|
|
|
|
foreach ($implementorDef->extends as $extends) {
|
|
|
|
$implementorFqns[] = $extends;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-03-06 23:34:43 +00:00
|
|
|
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump("SUFFIX");
|
|
|
|
// var_dump($classFqn);
|
|
|
|
// var_dump($memberSuffix);
|
2017-03-01 23:41:18 +00:00
|
|
|
return $classFqn . $memberSuffix;
|
2017-03-06 04:22:13 +00:00
|
|
|
}
|
2017-03-06 07:23:33 +00:00
|
|
|
else if ($parent instanceof Tolerant\Node\Expression\CallExpression && $node instanceof Tolerant\Node\QualifiedName) {
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($parent->name instanceof Node\Expr) {
|
|
|
|
return null;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
$name = (string)($parent->getNamespacedName());
|
|
|
|
}
|
|
|
|
else if ($this->isConstantFetch($node)) {
|
|
|
|
$name = (string)($node->getNamespacedName());
|
|
|
|
}
|
|
|
|
else if (
|
2017-03-06 19:01:10 +00:00
|
|
|
($scoped = $node) instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression ||
|
|
|
|
($scoped = $node->parent) instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression
|
|
|
|
|| ($node->parent instanceof Tolerant\Node\Expression\CallExpression && ($scoped = $node->parent->callableExpression) instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression)
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
2017-03-06 07:23:33 +00:00
|
|
|
// if ($scoped->memberName instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Cannot get definition of dynamic names
|
2017-03-06 07:23:33 +00:00
|
|
|
// return null;
|
|
|
|
// }
|
2017-03-06 19:01:10 +00:00
|
|
|
$className = $scoped->scopeResolutionQualifier->getText();
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($className === 'self' || $className === 'static' || $className === 'parent') {
|
|
|
|
// self and static are resolved to the containing class
|
2017-03-06 04:22:13 +00:00
|
|
|
$classNode = $node->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($classNode === null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if ($className === 'parent') {
|
|
|
|
// parent is resolved to the parent class
|
2017-03-06 04:22:13 +00:00
|
|
|
if (!isset($node->extends)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return null;
|
|
|
|
}
|
2017-03-06 19:01:10 +00:00
|
|
|
$className = (string)$classNode->extends->getResolvedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
2017-03-06 04:22:13 +00:00
|
|
|
$className = (string)$classNode->getNamespacedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 19:01:10 +00:00
|
|
|
} elseif ($scoped->scopeResolutionQualifier instanceof Tolerant\Node\QualifiedName) {
|
|
|
|
$className = $scoped->scopeResolutionQualifier->getResolvedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($scoped->memberName instanceof Tolerant\Node\Expression\Variable) {
|
|
|
|
$name = (string)$className . '::$' . $scoped->memberName->getName();
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
2017-03-06 04:22:13 +00:00
|
|
|
$name = (string)$className . '::' . $scoped->memberName->getText($node->getFileContents());
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 19:01:10 +00:00
|
|
|
|
|
|
|
if ($scoped->parent instanceof Tolerant\Node\Expression\CallExpression) {
|
|
|
|
$name .= '()';
|
|
|
|
}
|
|
|
|
return $name;
|
2017-03-06 04:22:13 +00:00
|
|
|
}
|
|
|
|
else {
|
2017-03-01 23:41:18 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (!isset($name)) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$node instanceof Tolerant\Node\Expression\CallExpression
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
$name .= '()';
|
|
|
|
}
|
|
|
|
return $name;
|
|
|
|
}
|
|
|
|
|
2017-03-09 23:56:41 +00:00
|
|
|
public static function isConstantFetch(Tolerant\Node $node) : bool {
|
2017-03-06 04:22:13 +00:00
|
|
|
return
|
2017-03-09 23:56:41 +00:00
|
|
|
(
|
2017-03-06 07:23:33 +00:00
|
|
|
$node instanceof Tolerant\Node\QualifiedName &&
|
2017-03-07 00:12:26 +00:00
|
|
|
($node->parent instanceof Tolerant\Node\Statement\ExpressionStatement || $node->parent instanceof Tolerant\Node\Expression || $node->parent instanceof Tolerant\Node\DelimitedList\ExpressionList) &&
|
2017-03-06 04:22:13 +00:00
|
|
|
!(
|
|
|
|
$node->parent instanceof Tolerant\Node\Expression\MemberAccessExpression || $node->parent instanceof Tolerant\Node\Expression\CallExpression ||
|
|
|
|
$node->parent instanceof Tolerant\Node\Expression\ObjectCreationExpression ||
|
|
|
|
$node->parent instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression || $node->parent instanceof Tolerant\Node\Expression\AnonymousFunctionCreationExpression ||
|
|
|
|
($node->parent instanceof Tolerant\Node\Expression\BinaryExpression && $node->parent->operator->kind === Tolerant\TokenKind::InstanceOfKeyword)
|
2017-03-09 23:56:41 +00:00
|
|
|
));
|
2017-03-06 04:22:13 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* Returns FQN of the class a node is contained in
|
|
|
|
* Returns null if the class is anonymous or the node is not contained in a class
|
|
|
|
*
|
2017-03-06 04:22:13 +00:00
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return string|null
|
|
|
|
*/
|
2017-03-06 04:22:13 +00:00
|
|
|
private static function getContainingClassFqn(Tolerant\Node $node)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-06 04:22:13 +00:00
|
|
|
$classNode = $node->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class);
|
|
|
|
if ($classNode === null) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return null;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
return (string)$classNode->getNamespacedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the assignment or parameter node where a variable was defined
|
|
|
|
*
|
|
|
|
* @param Node\Expr\Variable|Node\Expr\ClosureUse $var The variable access
|
|
|
|
* @return Node\Expr\Assign|Node\Expr\AssignOp|Node\Param|Node\Expr\ClosureUse|null
|
|
|
|
*/
|
2017-03-06 07:23:33 +00:00
|
|
|
public function resolveVariableToNode(Tolerant\Node $var)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
|
|
|
$n = $var;
|
2017-03-06 04:22:13 +00:00
|
|
|
// When a use is passed, start outside the closure to not return immediately
|
2017-03-06 07:23:33 +00:00
|
|
|
// Use variable vs variable parsing?
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($var instanceof Tolerant\Node\UseVariableName) {
|
|
|
|
$n = $var->getFirstAncestor(Tolerant\Node\Expression\AnonymousFunctionCreationExpression::class);
|
|
|
|
$name = $var->getName();
|
|
|
|
} else if ($var instanceof Tolerant\Node\Expression\Variable || $var instanceof Tolerant\Node\Parameter) {
|
|
|
|
$name = $var->getName();
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
|
|
|
throw new \InvalidArgumentException('$var must be Variable, Param or ClosureUse, not ' . get_class($var));
|
|
|
|
}
|
|
|
|
// Traverse the AST up
|
|
|
|
do {
|
|
|
|
// If a function is met, check the parameters and use statements
|
2017-03-06 04:22:13 +00:00
|
|
|
if (self::isFunctionLike($n)) {
|
|
|
|
if ($n->parameters !== null) {
|
|
|
|
|
|
|
|
foreach ($n->parameters->getElements() as $param) {
|
|
|
|
if ($param->getName() === $name) {
|
|
|
|
return $param;
|
|
|
|
}
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// If it is a closure, also check use statements
|
2017-03-15 21:10:52 +00:00
|
|
|
if ($n instanceof Tolerant\Node\Expression\AnonymousFunctionCreationExpression && $n->anonymousFunctionUseClause !== null && $n->anonymousFunctionUseClause->useVariableNameList !== null) {
|
2017-03-06 04:22:13 +00:00
|
|
|
foreach ($n->anonymousFunctionUseClause->useVariableNameList->getElements() as $use) {
|
|
|
|
if ($use->getName() === $name) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return $use;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// Check each previous sibling node for a variable assignment to that variable
|
2017-03-21 22:25:49 +00:00
|
|
|
while (($prevSibling = $n->getPreviousSibling()) !== null && $n = $prevSibling) {
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($n instanceof Tolerant\Node\Statement\ExpressionStatement) {
|
|
|
|
$n = $n->expression;
|
|
|
|
}
|
2017-03-01 23:41:18 +00:00
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
($n instanceof Tolerant\Node\Expression\AssignmentExpression && $n->operator->kind === Tolerant\TokenKind::EqualsToken)
|
|
|
|
&& $n->leftOperand instanceof Tolerant\Node\Expression\Variable && $n->leftOperand->getName() === $name
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return $n;
|
|
|
|
}
|
|
|
|
}
|
2017-03-15 21:10:52 +00:00
|
|
|
} while (isset($n) && $n = $n->parent);
|
2017-03-01 23:41:18 +00:00
|
|
|
// Return null if nothing was found
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-03-06 04:22:13 +00:00
|
|
|
function getFunctionLikeDeclarationFromParameter(Tolerant\Node $node) {
|
|
|
|
return $node->getFirstAncestor(
|
|
|
|
Tolerant\Node\Statement\FunctionDeclaration::class,
|
|
|
|
Tolerant\Node\MethodDeclaration::class,
|
|
|
|
Tolerant\Node\Expression\AnonymousFunctionCreationExpression::class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-03-09 23:56:41 +00:00
|
|
|
public static function isFunctionLike(Tolerant\Node $node) {
|
2017-03-06 04:22:13 +00:00
|
|
|
return
|
|
|
|
$node instanceof Tolerant\Node\Statement\FunctionDeclaration ||
|
|
|
|
$node instanceof Tolerant\Node\MethodDeclaration ||
|
|
|
|
$node instanceof Tolerant\Node\Expression\AnonymousFunctionCreationExpression;
|
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* Given an expression node, resolves that expression recursively to a type.
|
|
|
|
* If the type could not be resolved, returns Types\Mixed.
|
|
|
|
*
|
|
|
|
* @param \PhpParser\Node\Expr $expr
|
|
|
|
* @return \phpDocumentor\Reflection\Type
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function resolveExpressionNodeToType($expr): Type
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-24 17:30:34 +00:00
|
|
|
if (!($expr instanceof Tolerant\Node)) {
|
|
|
|
// TODO some members are null or Missing/SkippedToken
|
|
|
|
// How do we handle this more generally?
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\Variable || $expr instanceof Tolerant\Node\UseVariableName) {
|
|
|
|
if ($expr instanceof Tolerant\Node\Expression\Variable && $expr->getName() === 'this') {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\This;
|
|
|
|
}
|
|
|
|
// Find variable definition
|
|
|
|
$defNode = $this->resolveVariableToNode($expr);
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($defNode instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return $this->resolveExpressionNodeToType($defNode);
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($defNode instanceof Tolerant\Node\Parameter) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return $this->getTypeFromNode($defNode);
|
|
|
|
}
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\CallExpression &&
|
|
|
|
!($expr->callableExpression instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression ||
|
|
|
|
$expr->callableExpression instanceof Tolerant\Node\Expression\MemberAccessExpression)) {
|
2017-03-28 21:02:26 +00:00
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
// Find the function definition
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr->callableExpression instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Cannot get type for dynamic function call
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
|
|
|
if ($expr->callableExpression instanceof Tolerant\Node\QualifiedName) {
|
|
|
|
$fqn = $expr->callableExpression->getResolvedName() ?? $expr->callableExpression->getNamespacedName();
|
2017-03-06 07:23:33 +00:00
|
|
|
$fqn .= '()';
|
2017-03-06 04:22:13 +00:00
|
|
|
$def = $this->index->getDefinition($fqn, true);
|
|
|
|
if ($def !== null) {
|
|
|
|
return $def->type;
|
|
|
|
}
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
$isScopedPropertyAccess = $expr->callableExpression instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression;
|
|
|
|
$prefix = $isScopedPropertyAccess ?
|
|
|
|
$expr->callableExpression->scopeResolutionQualifier : $expr->callableExpression->dereferencableExpression;
|
|
|
|
|
|
|
|
if ($prefix instanceof Tolerant\Node\QualifiedName) {
|
|
|
|
$name = $prefix->getNamespacedName() ?? $prefix->getText();
|
|
|
|
} elseif ($prefix instanceof Tolerant\Token) {
|
|
|
|
// TODO DOES THIS EVER HAPPEN?
|
|
|
|
$name = $prefix->getText($expr->getText());
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
|
|
|
if (isset($name)) {
|
|
|
|
$memberNameText = $expr->callableExpression->memberName instanceof Node
|
|
|
|
? $expr->callableExpression->memberName->getText() : $expr->callableExpression->memberName->getText($expr->getFileContents());
|
|
|
|
$fqn = $name . ($isScopedPropertyAccess ? "::" : "->") . $memberNameText . "()";
|
|
|
|
|
|
|
|
$def = $this->index->getDefinition($fqn, true);
|
|
|
|
if ($def !== null) {
|
|
|
|
return $def->type;
|
|
|
|
}
|
|
|
|
}*/
|
|
|
|
}
|
|
|
|
if (strtolower((string)$expr->getText()) === 'true' || strtolower((string)$expr->getText()) === 'false') {
|
|
|
|
return new Types\Boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->isConstantFetch($expr)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve constant
|
2017-03-06 07:23:33 +00:00
|
|
|
$fqn = (string)$expr->getNamespacedName();
|
|
|
|
$def = $this->index->getDefinition($fqn, true);
|
|
|
|
if ($def !== null) {
|
|
|
|
return $def->type;
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if (($expr instanceof Tolerant\Node\Expression\CallExpression &&
|
|
|
|
($access = $expr->callableExpression) instanceof Tolerant\Node\Expression\MemberAccessExpression)
|
|
|
|
|| ($access = $expr) instanceof Tolerant\Node\Expression\MemberAccessExpression) {
|
|
|
|
if ($access->memberName instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
$var = $access->dereferencableExpression;
|
|
|
|
|
2017-03-09 23:56:41 +00:00
|
|
|
// var_dump("HERE!!!");
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve object
|
2017-03-06 04:22:13 +00:00
|
|
|
$objType = $this->resolveExpressionNodeToType($var);
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($objType);
|
2017-03-01 23:41:18 +00:00
|
|
|
if (!($objType instanceof Types\Compound)) {
|
|
|
|
$objType = new Types\Compound([$objType]);
|
|
|
|
}
|
|
|
|
for ($i = 0; $t = $objType->get($i); $i++) {
|
|
|
|
if ($t instanceof Types\This) {
|
|
|
|
$classFqn = self::getContainingClassFqn($expr);
|
|
|
|
if ($classFqn === null) {
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
} else if (!($t instanceof Types\Object_) || $t->getFqsen() === null) {
|
|
|
|
return new Types\Mixed;
|
|
|
|
} else {
|
|
|
|
$classFqn = substr((string)$t->getFqsen(), 1);
|
2017-03-09 23:56:41 +00:00
|
|
|
// var_dump($classFqn);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
$fqn = $classFqn . '->' . $access->memberName->getText($expr->getFileContents());
|
|
|
|
if ($expr instanceof Tolerant\Node\Expression\CallExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
$fqn .= '()';
|
|
|
|
}
|
2017-03-09 23:56:41 +00:00
|
|
|
// var_dump($fqn);
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($fqn);
|
2017-03-01 23:41:18 +00:00
|
|
|
$def = $this->index->getDefinition($fqn);
|
2017-03-09 23:56:41 +00:00
|
|
|
// var_dump($def);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($def !== null) {
|
|
|
|
return $def->type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$expr instanceof Tolerant\Node\Expression\CallExpression && ($scopedAccess = $expr->callableExpression) instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression
|
|
|
|
|| ($scopedAccess = $expr) instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
2017-03-06 07:23:33 +00:00
|
|
|
$classType = $this->resolveClassNameToType($scopedAccess->scopeResolutionQualifier);
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($classType);
|
2017-03-06 04:22:13 +00:00
|
|
|
if (!($classType instanceof Types\Object_) || $classType->getFqsen() === null /*|| $expr->name instanceof Tolerant\Node\Expression*/) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
$fqn = substr((string)$classType->getFqsen(), 1) . '::';
|
2017-03-06 22:21:36 +00:00
|
|
|
// if ($expr instanceof Tolerant\Node\Expression\ScopedPropertyAccessExpression && $expr->memberName instanceof Tolerant\Node\Expression\Variable) {
|
|
|
|
// $fqn .= '$';
|
|
|
|
// }
|
2017-03-06 04:22:13 +00:00
|
|
|
$fqn .= $scopedAccess->memberName->getText() ?? $scopedAccess->memberName->getText($expr->getFileContents()); // TODO is there a cleaner way to do this?
|
|
|
|
if ($expr instanceof Tolerant\Node\Expression\CallExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
$fqn .= '()';
|
|
|
|
}
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($fqn);
|
2017-03-01 23:41:18 +00:00
|
|
|
$def = $this->index->getDefinition($fqn);
|
|
|
|
if ($def === null) {
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
return $def->type;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\ObjectCreationExpression) {
|
2017-03-06 07:23:33 +00:00
|
|
|
return $this->resolveClassNameToType($expr->classTypeDesignator);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\CloneExpression) {
|
|
|
|
return $this->resolveExpressionNodeToType($expr->expression);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\AssignmentExpression) {
|
|
|
|
return $this->resolveExpressionNodeToType($expr->rightOperand);
|
|
|
|
}
|
|
|
|
if ($expr instanceof Tolerant\Node\Expression\TernaryExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// ?:
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr->ifExpression === null) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\Compound([
|
2017-03-06 04:22:13 +00:00
|
|
|
$this->resolveExpressionNodeToType($expr->condition), // why?
|
|
|
|
$this->resolveExpressionNodeToType($expr->elseExpression)
|
2017-03-01 23:41:18 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
// Ternary is a compound of the two possible values
|
|
|
|
return new Types\Compound([
|
2017-03-06 04:22:13 +00:00
|
|
|
$this->resolveExpressionNodeToType($expr->ifExpression),
|
|
|
|
$this->resolveExpressionNodeToType($expr->elseExpression)
|
2017-03-01 23:41:18 +00:00
|
|
|
]);
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\BinaryExpression && $expr->operator->kind === Tolerant\TokenKind::QuestionQuestionToken) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// ?? operator
|
|
|
|
return new Types\Compound([
|
2017-03-06 04:22:13 +00:00
|
|
|
$this->resolveExpressionNodeToType($expr->leftOperand),
|
|
|
|
$this->resolveExpressionNodeToType($expr->rightOperand)
|
2017-03-01 23:41:18 +00:00
|
|
|
]);
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$this->isBooleanExpression($expr)
|
|
|
|
|
|
|
|
|| ($expr instanceof Tolerant\Node\Expression\CastExpression && $expr->castType->kind === Tolerant\TokenKind::BoolCastToken)
|
|
|
|
|| ($expr instanceof Tolerant\Node\Expression\UnaryOpExpression && $expr->operator->kind === Tolerant\TokenKind::ExclamationToken)
|
|
|
|
|| $expr instanceof Tolerant\Node\Expression\EmptyIntrinsicExpression
|
|
|
|
|| $expr instanceof Tolerant\Node\Expression\IssetIntrinsicExpression
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return new Types\Boolean;
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
($expr instanceof Tolerant\Node\Expression\BinaryExpression &&
|
|
|
|
($expr->operator->kind === Tolerant\TokenKind::DotToken || $expr->operator->kind === Tolerant\TokenKind::DotEqualsToken)) ||
|
|
|
|
$expr instanceof Tolerant\Node\StringLiteral ||
|
|
|
|
($expr instanceof Tolerant\Node\Expression\CastExpression && $expr->castType->kind === Tolerant\TokenKind::StringCastToken)
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\String_
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\Encapsed
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\EncapsedStringPart
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Class_
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Dir
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Function_
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Method
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Namespace_
|
|
|
|
// || $expr instanceof Node\Expr\Scalar\MagicConst\Trait_
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return new Types\String_;
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$expr instanceof Tolerant\Node\Expression\BinaryExpression &&
|
|
|
|
($operator = $expr->operator->kind)
|
|
|
|
&& ($operator === Tolerant\TokenKind::PlusToken ||
|
|
|
|
$operator === Tolerant\TokenKind::AsteriskAsteriskToken ||
|
|
|
|
$operator === Tolerant\TokenKind::AsteriskToken ||
|
|
|
|
$operator === Tolerant\TokenKind::MinusToken ||
|
|
|
|
$operator === Tolerant\TokenKind::AsteriskEqualsToken||
|
|
|
|
$operator === Tolerant\TokenKind::AsteriskAsteriskEqualsToken ||
|
|
|
|
$operator === Tolerant\TokenKind::MinusEqualsToken ||
|
|
|
|
$operator === Tolerant\TokenKind::PlusEqualsToken // TODO - this should be a type of assigment expression
|
|
|
|
)
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$this->resolveExpressionNodeToType($expr->leftOperand) instanceof Types\Integer_
|
|
|
|
&& $this->resolveExpressionNodeToType($expr->rightOperand) instanceof Types\Integer_
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return new Types\Integer;
|
|
|
|
}
|
|
|
|
return new Types\Float_;
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
// TODO better naming
|
|
|
|
($expr instanceof Tolerant\Node\NumericLiteral && $expr->children->kind === Tolerant\TokenKind::IntegerLiteralToken) ||
|
|
|
|
$expr instanceof Tolerant\Node\Expression\BinaryExpression && (
|
|
|
|
($operator = $expr->operator->kind)
|
|
|
|
&& ($operator === Tolerant\TokenKind::LessThanEqualsGreaterThanToken ||
|
|
|
|
$operator === Tolerant\TokenKind::AmpersandToken ||
|
|
|
|
$operator === Tolerant\TokenKind::CaretToken ||
|
|
|
|
$operator === Tolerant\TokenKind::BarToken)
|
|
|
|
)
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return new Types\Integer;
|
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
$expr instanceof Tolerant\Node\NumericLiteral && $expr->children->kind === Tolerant\TokenKind::FloatingLiteralToken
|
|
|
|
||
|
|
|
|
($expr instanceof Tolerant\Node\Expression\CastExpression && $expr->castType->kind === Tolerant\TokenKind::DoubleCastToken)
|
2017-03-01 23:41:18 +00:00
|
|
|
) {
|
|
|
|
return new Types\Float_;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\ArrayCreationExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
$valueTypes = [];
|
|
|
|
$keyTypes = [];
|
2017-03-15 21:10:52 +00:00
|
|
|
if ($expr->arrayElements !== null) {
|
|
|
|
foreach ($expr->arrayElements->getElements() as $item) {
|
|
|
|
$valueTypes[] = $this->resolveExpressionNodeToType($item->elementValue);
|
|
|
|
$keyTypes[] = $item->elementKey ? $this->resolveExpressionNodeToType($item->elementKey) : new Types\Integer;
|
|
|
|
}
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
$valueTypes = array_unique($keyTypes);
|
|
|
|
$keyTypes = array_unique($keyTypes);
|
|
|
|
if (empty($valueTypes)) {
|
|
|
|
$valueType = null;
|
|
|
|
} else if (count($valueTypes) === 1) {
|
|
|
|
$valueType = $valueTypes[0];
|
|
|
|
} else {
|
|
|
|
$valueType = new Types\Compound($valueTypes);
|
|
|
|
}
|
|
|
|
if (empty($keyTypes)) {
|
|
|
|
$keyType = null;
|
|
|
|
} else if (count($keyTypes) === 1) {
|
|
|
|
$keyType = $keyTypes[0];
|
|
|
|
} else {
|
|
|
|
$keyType = new Types\Compound($keyTypes);
|
|
|
|
}
|
|
|
|
return new Types\Array_($valueType, $keyType);
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\SubscriptExpression) {
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump("SUBSCRIPT");
|
2017-03-06 04:22:13 +00:00
|
|
|
$varType = $this->resolveExpressionNodeToType($expr->postfixExpression);
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump($varType);
|
2017-03-01 23:41:18 +00:00
|
|
|
if (!($varType instanceof Types\Array_)) {
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
return $varType->getValueType();
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($expr instanceof Tolerant\Node\Expression\ScriptInclusionExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// TODO: resolve path to PhpDocument and find return statement
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
|
2017-03-06 04:22:13 +00:00
|
|
|
private function isBooleanExpression($expression) : bool {
|
|
|
|
if (!($expression instanceof Tolerant\Node\Expression\BinaryExpression)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
switch ($expression->operator->kind) {
|
|
|
|
case Tolerant\TokenKind::InstanceOfKeyword:
|
|
|
|
case Tolerant\TokenKind::GreaterThanToken:
|
|
|
|
case Tolerant\TokenKind::GreaterThanEqualsToken:
|
|
|
|
case Tolerant\TokenKind::LessThanToken:
|
|
|
|
case Tolerant\TokenKind::LessThanEqualsToken:
|
|
|
|
case Tolerant\TokenKind::AndKeyword:
|
|
|
|
case Tolerant\TokenKind::AmpersandAmpersandToken:
|
|
|
|
case Tolerant\TokenKind::LessThanEqualsGreaterThanToken:
|
|
|
|
case Tolerant\TokenKind::OrKeyword:
|
|
|
|
case Tolerant\TokenKind::BarBarToken:
|
|
|
|
case Tolerant\TokenKind::XorKeyword:
|
|
|
|
case Tolerant\TokenKind::ExclamationEqualsEqualsToken:
|
|
|
|
case Tolerant\TokenKind::ExclamationEqualsToken:
|
|
|
|
case Tolerant\TokenKind::CaretToken:
|
|
|
|
case Tolerant\TokenKind::EqualsEqualsEqualsToken:
|
|
|
|
case Tolerant\TokenKind::EqualsToken:
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* Takes any class name node (from a static method call, or new node) and returns a Type object
|
|
|
|
* Resolves keywords like self, static and parent
|
|
|
|
*
|
2017-03-06 04:22:13 +00:00
|
|
|
* @param Tolerant\Node || Tolerant\Token $class
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return Type
|
|
|
|
*/
|
2017-03-06 07:23:33 +00:00
|
|
|
public function resolveClassNameToType($class): Type
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($class instanceof Tolerant\Node\Expression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($class instanceof Tolerant\Token && $class->kind === Tolerant\TokenKind::ClassKeyword) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Anonymous class
|
|
|
|
return new Types\Object_;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
$className = (string)$class->getResolvedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($className === 'static') {
|
|
|
|
return new Types\Static_;
|
|
|
|
}
|
|
|
|
if ($className === 'self' || $className === 'parent') {
|
2017-03-06 04:22:13 +00:00
|
|
|
$classNode = $class->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class);
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($className === 'parent') {
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($classNode === null || $classNode->classBaseClause === null || $classNode->classBaseClause->baseClass === null) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return new Types\Object_;
|
|
|
|
}
|
|
|
|
// parent is resolved to the parent class
|
2017-03-06 04:22:13 +00:00
|
|
|
$classFqn = (string)$classNode->classBaseClause->baseClass->getResolvedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
|
|
|
if ($classNode === null) {
|
|
|
|
return new Types\Self_;
|
|
|
|
}
|
|
|
|
// self is resolved to the containing class
|
2017-03-15 21:10:52 +00:00
|
|
|
$classFqn = (string)$classNode->getNamespacedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
return new Types\Object_(new Fqsen('\\' . $classFqn));
|
|
|
|
}
|
|
|
|
return new Types\Object_(new Fqsen('\\' . $className));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the type a reference to this symbol will resolve to.
|
|
|
|
* For properties and constants, this is the type of the property/constant.
|
|
|
|
* For functions and methods, this is the return type.
|
|
|
|
* For parameters, this is the type of the parameter.
|
|
|
|
* For classes and interfaces, this is the class type (object).
|
|
|
|
* For variables / assignments, this is the documented type or type the assignment resolves to.
|
|
|
|
* Can also be a compound type.
|
|
|
|
* If it is unknown, will be Types\Mixed.
|
|
|
|
* Returns null if the node does not have a type.
|
|
|
|
*
|
2017-03-06 04:22:13 +00:00
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return \phpDocumentor\Reflection\Type|null
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public function getTypeFromNode($node)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-06 04:22:13 +00:00
|
|
|
// For parameters, get the type of the parameter [first from doc block, then from param type]
|
|
|
|
if ($node instanceof Tolerant\Node\Parameter) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Parameters
|
2017-03-06 04:22:13 +00:00
|
|
|
// Get the doc block for the the function call
|
|
|
|
$functionLikeDeclaration = $this->getFunctionLikeDeclarationFromParameter($node);
|
|
|
|
$variableName = $node->variableName->getText($node->getFileContents());
|
|
|
|
$docBlock = $this->getDocBlock($functionLikeDeclaration);
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
if ($docBlock !== null) {
|
2017-03-06 04:22:13 +00:00
|
|
|
$parameterDocBlockTag = $this->getDocBlockTagForParameter($docBlock, $variableName);
|
|
|
|
if ($parameterDocBlockTag !== null && $parameterDocBlockTag->getType() !== null) {
|
|
|
|
return $parameterDocBlockTag->getType();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
|
|
|
if ($node->typeDeclaration !== null) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Use PHP7 return type hint
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($node->typeDeclaration instanceof Tolerant\Token) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve a string like "bool" to a type object
|
2017-03-06 04:22:13 +00:00
|
|
|
$type = $this->typeResolver->resolve($node->typeDeclaration->getText($node->getFileContents()));
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
2017-03-06 04:22:13 +00:00
|
|
|
$type = new Types\Object_(new Fqsen('\\' . (string)$node->typeDeclaration->getResolvedName()));
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if ($node->default !== null) {
|
|
|
|
$defaultType = $this->resolveExpressionNodeToType($node->default);
|
|
|
|
if (isset($type) && !is_a($type, get_class($defaultType))) {
|
|
|
|
$type = new Types\Compound([$type, $defaultType]);
|
|
|
|
} else {
|
|
|
|
$type = $defaultType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return $type ?? new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
// for functions and methods, get the return type [first from doc block, then from return type]
|
|
|
|
if ($this->isFunctionLike($node)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Functions/methods
|
2017-03-06 04:22:13 +00:00
|
|
|
$docBlock = $this->getDocBlock($node);
|
2017-03-01 23:41:18 +00:00
|
|
|
if (
|
|
|
|
$docBlock !== null
|
|
|
|
&& !empty($returnTags = $docBlock->getTagsByName('return'))
|
|
|
|
&& $returnTags[0]->getType() !== null
|
|
|
|
) {
|
|
|
|
// Use @return tag
|
|
|
|
return $returnTags[0]->getType();
|
|
|
|
}
|
|
|
|
if ($node->returnType !== null) {
|
|
|
|
// Use PHP7 return type hint
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($node->returnType instanceof Tolerant\Token) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Resolve a string like "bool" to a type object
|
2017-03-06 04:22:13 +00:00
|
|
|
return $this->typeResolver->resolve($node->returnType->getText($node->getFileContents()));
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
return new Types\Object_(new Fqsen('\\' . (string)$node->returnType->getResolvedName()));
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
// Unknown return type
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
|
|
|
|
// for variables / assignments, get the documented type the assignment resolves to.
|
|
|
|
if ($node instanceof Tolerant\Node\Expression\Variable) {
|
|
|
|
$node = $node->getFirstAncestor(Tolerant\Node\Expression\AssignmentExpression::class) ?? $node;
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
($declarationNode = $node->getFirstAncestor(
|
|
|
|
Tolerant\Node\PropertyDeclaration::class,
|
|
|
|
Tolerant\Node\Statement\ConstDeclaration::class,
|
|
|
|
Tolerant\Node\ClassConstDeclaration::class)) !== null ||
|
|
|
|
$node instanceof Tolerant\Node\Expression\AssignmentExpression)
|
|
|
|
{
|
|
|
|
$declarationNode = $declarationNode ?? $node;
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
// Property, constant or variable
|
|
|
|
// Use @var tag
|
|
|
|
if (
|
2017-03-06 04:22:13 +00:00
|
|
|
($docBlock = $this->getDocBlock($declarationNode))
|
2017-03-01 23:41:18 +00:00
|
|
|
&& !empty($varTags = $docBlock->getTagsByName('var'))
|
|
|
|
&& ($type = $varTags[0]->getType())
|
|
|
|
) {
|
2017-03-07 05:31:13 +00:00
|
|
|
// var_dump("BOOYAH");
|
|
|
|
// var_dump($type);
|
2017-03-01 23:41:18 +00:00
|
|
|
return $type;
|
|
|
|
}
|
|
|
|
// Resolve the expression
|
2017-03-06 04:22:13 +00:00
|
|
|
if ($declarationNode instanceof Tolerant\Node\PropertyDeclaration) {
|
|
|
|
// TODO should have default
|
|
|
|
if (isset($node->rightOperand)) {
|
|
|
|
return $this->resolveExpressionNodeToType($node->rightOperand);
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-06 04:22:13 +00:00
|
|
|
} else if ($node instanceof Tolerant\Node\ConstElement) {
|
|
|
|
return $this->resolveExpressionNodeToType($node->assignment);
|
|
|
|
} else if ($node instanceof Tolerant\Node\Expression\AssignmentExpression) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return $this->resolveExpressionNodeToType($node);
|
|
|
|
}
|
|
|
|
// TODO: read @property tags of class
|
|
|
|
// TODO: Try to infer the type from default value / constant value
|
|
|
|
// Unknown
|
|
|
|
return new Types\Mixed;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2017-03-06 04:22:13 +00:00
|
|
|
/**
|
|
|
|
* @param DocBlock $docBlock
|
|
|
|
* @param $variableName
|
|
|
|
* @return DocBlock\Tags\Param | null
|
|
|
|
*/
|
|
|
|
private function getDocBlockTagForParameter($docBlock, $variableName) {
|
|
|
|
$tags = $docBlock->getTagsByName('param');
|
|
|
|
foreach ($tags as $tag) {
|
|
|
|
if ($tag->getVariableName() === $variableName) {
|
|
|
|
return $tag;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-01 23:41:18 +00:00
|
|
|
/**
|
|
|
|
* Returns the fully qualified name (FQN) that is defined by a node
|
|
|
|
* Returns null if the node does not declare any symbol that can be referenced by an FQN
|
|
|
|
*
|
2017-03-05 04:56:01 +00:00
|
|
|
* @param Tolerant\Node $node
|
2017-03-01 23:41:18 +00:00
|
|
|
* @return string|null
|
|
|
|
*/
|
2017-03-02 00:01:06 +00:00
|
|
|
public static function getDefinedFqn($node)
|
2017-03-01 23:41:18 +00:00
|
|
|
{
|
2017-03-15 21:10:52 +00:00
|
|
|
$parent = $node->parent;
|
2017-03-01 23:41:18 +00:00
|
|
|
// Anonymous classes don't count as a definition
|
2017-03-05 04:56:01 +00:00
|
|
|
// INPUT OUTPUT:
|
|
|
|
// namespace A\B;
|
|
|
|
// class C { } A\B\C
|
|
|
|
// interface C { } A\B\C
|
|
|
|
// trait C { } A\B\C
|
|
|
|
if (
|
|
|
|
$node instanceof Tolerant\Node\Statement\ClassDeclaration ||
|
|
|
|
$node instanceof Tolerant\Node\Statement\InterfaceDeclaration ||
|
|
|
|
$node instanceof Tolerant\Node\Statement\TraitDeclaration
|
|
|
|
) {
|
|
|
|
return (string) $node->getNamespacedName();
|
|
|
|
}
|
|
|
|
|
|
|
|
// INPUT OUTPUT:
|
|
|
|
// namespace A\B; A\B
|
|
|
|
else if ($node instanceof Tolerant\Node\Statement\NamespaceDefinition && $node->name instanceof Tolerant\Node\QualifiedName) {
|
|
|
|
return (string) $node->name;
|
|
|
|
}
|
|
|
|
// INPUT OUTPUT:
|
|
|
|
// namespace A\B;
|
|
|
|
// function a(); A\B\a();
|
|
|
|
else if ($node instanceof Tolerant\Node\Statement\FunctionDeclaration) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Function: use functionName() as the name
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$node->getNamespacedName() . '()';
|
|
|
|
}
|
|
|
|
// INPUT OUTPUT
|
|
|
|
// namespace A\B;
|
|
|
|
// class C {
|
|
|
|
// function a () {} A\B\C::a()
|
|
|
|
// static function b() {} A\B\C->b()
|
|
|
|
// }
|
|
|
|
else if ($node instanceof Tolerant\Node\MethodDeclaration) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Class method: use ClassName->methodName() as name
|
2017-04-10 19:42:49 +00:00
|
|
|
$class = $node->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class, Tolerant\Node\Statement\TraitDeclaration::class, Tolerant\Node\Statement\InterfaceDeclaration::class);
|
2017-03-01 23:41:18 +00:00
|
|
|
if (!isset($class->name)) {
|
|
|
|
// Ignore anonymous classes
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
if ($node->isStatic()) {
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$class->getNamespacedName() . '::' . $node->getName() . '()';
|
2017-03-01 23:41:18 +00:00
|
|
|
} else {
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$class->getNamespacedName() . '->' . $node->getName() . '()';
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// INPUT OUTPUT
|
|
|
|
// namespace A\B;
|
|
|
|
// class C {
|
|
|
|
// static $a = 4, $b = 4 A\B\C::$a, A\B\C::$b
|
|
|
|
// $a = 4, $b = 4 A\B\C->$a, A\B\C->$b
|
|
|
|
// }
|
|
|
|
else if (
|
|
|
|
$node instanceof Tolerant\Node\Expression\Variable &&
|
|
|
|
($propertyDeclaration = $node->getFirstAncestor(Tolerant\Node\PropertyDeclaration::class)) !== null &&
|
2017-04-10 19:42:49 +00:00
|
|
|
($classDeclaration =
|
|
|
|
$node->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class, Tolerant\Node\Statement\InterfaceDeclaration::class, Tolerant\Node\Statement\TraitDeclaration::class)
|
|
|
|
) !== null)
|
2017-03-05 04:56:01 +00:00
|
|
|
{
|
|
|
|
if ($propertyDeclaration->isStatic()) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Static Property: use ClassName::$propertyName as name
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$classDeclaration->getNamespacedName() . '::$' . (string)$node->getName();
|
|
|
|
} elseif (($name = $node->getName()) !== null) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Instance Property: use ClassName->propertyName as name
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$classDeclaration->getNamespacedName() . '->' . $name;
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// INPUT OUTPUT
|
|
|
|
// namespace A\B;
|
|
|
|
// const FOO = 5; A\B\FOO
|
|
|
|
// class C {
|
|
|
|
// const $a, $b = 4 A\B\C::$a(), A\B\C::$b
|
|
|
|
// }
|
|
|
|
else if ($node instanceof Tolerant\Node\ConstElement) {
|
|
|
|
$constDeclaration = $node->getFirstAncestor(Tolerant\Node\Statement\ConstDeclaration::class, Tolerant\Node\ClassConstDeclaration::class);
|
|
|
|
if ($constDeclaration instanceof Tolerant\Node\Statement\ConstDeclaration) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Basic constant: use CONSTANT_NAME as name
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$node->getNamespacedName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
if ($constDeclaration instanceof Tolerant\Node\ClassConstDeclaration) {
|
2017-03-01 23:41:18 +00:00
|
|
|
// Class constant: use ClassName::CONSTANT_NAME as name
|
2017-03-05 04:56:01 +00:00
|
|
|
$classDeclaration = $constDeclaration->getFirstAncestor(Tolerant\Node\Statement\ClassDeclaration::class);
|
|
|
|
if (!isset($classDeclaration->name)) {
|
2017-03-01 23:41:18 +00:00
|
|
|
return null;
|
|
|
|
}
|
2017-03-05 04:56:01 +00:00
|
|
|
return (string)$classDeclaration->getNamespacedName() . '::' . $node->getName();
|
2017-03-01 23:41:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|