# File lib/brakeman/checks/check_content_tag.rb, line 147
  def process_call exp
    if @mark
      actually_process_call exp
    else
      @mark = true
      actually_process_call exp
      @mark = false
    end

    exp
  end