Method: Crokus::Parser#parse_goto

Defined in:
lib/crokus/parser.rb

#parse_gotoObject



317
318
319
320
321
322
323
# File 'lib/crokus/parser.rb', line 317

def parse_goto
  indent "goto"
  expect :goto #label
  id=expect(:ident)
  dedent
  Goto.new(id)
end