A node to represent an extern(C++) namespace attribute
Mixin declarations, like: mixin("int x"); https://dlang.org/spec/module.html#mixin-declaration
Collection of declarations that stores foreach index variables in a local symbol table. Other symbols declared within are forwarded to another scope, like:
Static foreach at declaration scope, like: static foreach (i; [0, 1, 2]){ }
User defined attributes look like: @foo(args, ...) @(args, ...)
Defines declarations of various attributes.
The term 'attribute' refers to things that can apply to a larger scope than a single declaration. Among them are: - Alignment (align(8)) - User defined attributes (@UDA) - Function Attributes (@safe) - Storage classes (static, __gshared) - Mixin declarations (mixin("int x;")) - Conditional compilation (static if, static foreach) - Linkage (extern(C)) - Anonymous structs / unions - Protection (private, public) - Deprecated declarations (@deprecated)