PHPCfg\Parser::parseExpr_StaticCall PHP Method

parseExpr_StaticCall() protected method

protected parseExpr_StaticCall ( PhpParser\Node\Expr\StaticCall $expr )
$expr PhpParser\Node\Expr\StaticCall
    protected function parseExpr_StaticCall(Expr\StaticCall $expr)
    {
        return new Op\Expr\StaticCall($this->readVariable($this->parseExprNode($expr->class)), $this->readVariable($this->parseExprNode($expr->name)), $this->parseExprList($expr->args, self::MODE_READ), $this->mapAttributes($expr));
    }
Parser