# File lib/brakeman/processors/lib/rails2_route_processor.rb, line 305
  def get_keys hash
    keys = Sexp.new(:array)
    hash_iterate(hash) do |key, _value|
      keys << key
    end

    keys
  end