# File lib/brakeman/processors/lib/find_return_value.rb, line 142
  def make_or lhs, rhs
    #Better checks in future
    if lhs == rhs
      lhs
    else
      Sexp.new(:or, lhs, rhs)
    end
  end