public function parseSubscriptExpression($node) { if ('.' === $this->parser ->getStream() ->next() ->getValue()) { return $this->parseSubscriptExpressionDot($node); } return $this->parseSubscriptExpressionArray($node); }