Method: Crokus::Parser#parse_body

Defined in:
lib/crokus/parser.rb

#parse_bodyObject



626
627
628
629
630
631
632
633
634
# File 'lib/crokus/parser.rb', line 626

def parse_body
  body=Body.new
  expect :lbrace
  while !showNext.is? :rbrace
    body << statement()
  end
  expect :rbrace
  return body
end