# File lib/brakeman/processors/lib/rails4_config_processor.rb, line 7
  def process_iter exp
    if exp.block_call == APPLICATION_CONFIG
      @inside_config = true
      process exp.block if sexp? exp.block
      @inside_config = false
    else
      super
    end

    exp
  end