# File lib/brakeman/processors/controller_processor.rb, line 161
  def process_iter exp
    if @current_method.nil? and call? exp.block_call
      block_call_name = exp.block_call.method

      if block_call_name == :before_filter  or block_call_name == :before_action
        add_fake_filter exp
      else
        super
      end
    else
      super
    end
  end