View source code
Display the source code in dmd/parse.d from which this page was generated on github.
Report a bug
If you spot a problem with this page, click here to create a Bugzilla issue.
Improve this page
Quickly fork, edit online, and submit a pull request for this page. Requires a signed-in GitHub account. This works well for small changes. If you'd like to make larger changes you may want to consider using local clone.

Function dmd.parse.Parser.parseDeclarator

Parse Declarator

AST.Type parseDeclarator (
  AST.Type t,
  ref int palt,
  Identifier* pident,
  AST.TemplateParameters** tpl = null,
  StorageClass storageClass = 0,
  bool* pdisable = null,
  AST.Expressions** pudas = null
);

Parameters

NameDescription
t base type to start with
palt OR in 1 for C-style function pointer declaration syntax, 2 for C-style array declaration syntax, otherwise don't modify
pident set to Identifier if there is one, null if not
tpl if !null, then set to TemplateParameterList
storageClass any storage classes seen so far
pdisable set to true if @disable seen
pudas any user defined attributes seen so far. Merged with any more found

Returns

type declared

Reference

https://dlang.org/spec/declaration.html#Declarator

Authors

Walter Bright

License

Boost License 1.0