module ABNF

ABNF (RFC 2234) parser objects.

Public Instance Methods

parse(parser, str) click to toggle source
# File lib/abnf.rb, line 261
def parse(parser, str)
  parser.match(Stream.new(str))
end