PDepend\Source\Language\PHP\AbstractPHPParser::parseIdentifier PHP Метод

parseIdentifier() защищенный Метод

Parses a static identifier expression, as it is used for method and function names.
С версии: 0.9.12
protected parseIdentifier ( ) : PDepend\Source\AST\ASTIdentifier
Результат PDepend\Source\AST\ASTIdentifier
    protected function parseIdentifier()
    {
        $token = $this->consumeToken(Tokens::T_STRING);
        $node = $this->builder->buildAstIdentifier($token->image);
        $node->configureLinesAndColumns($token->startLine, $token->endLine, $token->startColumn, $token->endColumn);
        return $node;
    }
AbstractPHPParser