# File lib/brakeman/processors/lib/rails2_config_processor.rb, line 135
  def process_iter exp
    target = exp.block_call.target
    method = exp.block_call.method

    if sexp? target and target == RAILS_INIT and method == :run
      env[Sexp.new(:lvar, exp.block_args.value)] = Brakeman::Rails2ConfigProcessor::RAILS_CONFIG
    end

    process_default exp
  end