PDepend\Source\Language\PHP\AbstractPHPParser::parseCompoundExpression PHP Method

parseCompoundExpression() protected method

------------------ {'_' . foo . $bar} ------------------
Since: 0.9.6
protected parseCompoundExpression ( ) : PDepend\Source\AST\ASTCompoundExpression
return PDepend\Source\AST\ASTCompoundExpression
    protected function parseCompoundExpression()
    {
        $this->consumeComments();
        return $this->parseBraceExpression($this->builder->buildAstCompoundExpression(), $this->consumeToken(Tokens::T_CURLY_BRACE_OPEN), Tokens::T_CURLY_BRACE_CLOSE);
    }
AbstractPHPParser