class Regexp::Expression::Quantifier

def ==(other)

def ==(other)
  other.class == self.class &&
    other.token == token &&
    other.mode == mode &&
    other.min == min &&
    other.max == max
end