Method: HParser::Util::LineScanner#skip

Defined in:
lib/hparser/util/line_scanner.rb

#skip(exp) ⇒ Object



22
23
24
25
26
27
28
# File 'lib/hparser/util/line_scanner.rb', line 22

def skip(exp)
  if match?(exp) then
    @lines.shift
  else
    nil
  end
end