# File lib/rcodetools/completion.rb, line 81
  def aref_or_aset?(right_stripped, last_char)
    if last_char == ?[
      case right_stripped
      when /\]\s*=/ then "[]="
      when /\]/     then "[]"
      end
    end
  end