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

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

---- $foo; ---- ----- $$foo; ----- ------ ${FOO}; ------
С версии: 0.9.6
protected parseCompoundVariableOrVariableVariableOrVariable ( ) : PDepend\Source\AST\ASTNode
Результат PDepend\Source\AST\ASTNode
    protected function parseCompoundVariableOrVariableVariableOrVariable()
    {
        if ($this->tokenizer->peek() == Tokens::T_DOLLAR) {
            return $this->parseCompoundVariableOrVariableVariable();
        }
        return $this->parseVariable();
    }
AbstractPHPParser