Method: Crokus::Parser#declarator

Defined in:
lib/crokus/parser.rb

#declaratorObject



422
423
424
425
426
427
# File 'lib/crokus/parser.rb', line 422

def declarator
  if showNext.is? :ident
    ret=@current_ident=Ident.new(acceptIt)
  end
  return ret
end