class Regexp::Parser

def open_set(token)

def open_set(token)
  # TODO: this and Quantifier are the only cases where Expression#token
  # does not match the scanner/lexer output. Fix in v3.0.0.
  token.token = :character
  nest(CharacterSet.new(token, active_opts))
end