PHPCfg\Parser::parseExpr_MethodCall PHP Method

parseExpr_MethodCall() protected method

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