# File lib/core/facets/regexp/op_add.rb, line 12
  def +(other)
    other = Regexp.escape(other) if other.is_a?(String)
    /#{self}#{other}/
  end