Class: ABNF::LWSP

Inherits:
Repetition show all
Defined in:
lib/abnf.rb

Overview

Linear white space (past newline)

Instance Method Summary collapse

Methods inherited from Repetition

#match, #set_block

Constructor Details

#initializeLWSP

Returns a new instance of LWSP.



256
257
258
# File 'lib/abnf.rb', line 256

def initialize
  super(:any, Alternate.new(WSP.new, Concat.new(CRLF.new, WSP.new)))
end