class Regexp::Parser::UnknownTokenTypeError

Public Class Methods

new(type, token) click to toggle source
Calls superclass method
# File lib/regexp_parser/parser.rb, line 10
def initialize(type, token)
  super "Unknown token type #{type} #{token.inspect}"
end