# File lib/brakeman/processors/output_processor.rb, line 20
  def process exp
    begin
      if @user_input and @user_input == exp
        @user_input_block.call(exp, super(exp))
      else
        super exp if sexp? exp and not exp.empty?
      end
    rescue => e
      Brakeman.debug "While formatting #{exp}: #{e}\n#{e.backtrace.join("\n")}"
    end
  end