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.parseAttribute

Parse attribute(s), lexer is on '@'.

StorageClass parseAttribute (
  ref AST.Expressions* udas
);

Attributes can be builtin (e.g. @safe, @nogc, etc...), or be user-defined (UDAs). In the former case, we return the storage class via the return value, while in thelater case we return 0 and set pudas.

Parameters

NameDescription
pudas An array of UDAs to append to

Returns

If the attribute is builtin, the return value will be non-zero. Otherwise, 0 is returned, and pudas will be appended to.

Authors

Walter Bright

License

Boost License 1.0