Method: Crokus::Parser#pointer

Defined in:
lib/crokus/parser.rb

#pointerObject



953
954
955
956
957
958
959
960
961
962
963
964
965
# File 'lib/crokus/parser.rb', line 953

def pointer
  expect :mul
  while showNext.is? STARTERS_TYPE_QUALIFIER+[:mul]
    case showNext.kind
    when :volatile
      acceptIt
    when :const
      acceptIt
    when :mult
      acceptIt
    end
  end
end