Compute cached type properties for TypeStruct
Determine if struct has copy construction (copy constructor or postblit)
Verifies whether the struct declaration has a constructor that is not a copy constructor. Optionally, it can check whether the struct declaration has a regular constructor, that is not disabled.
Determine if struct is POD (Plain Old Data).
size of struct
size of struct for alignment purposes
VarDeclaration fields
any deferred semantic2() or semantic3() symbol
specifies whether this is a D, C++, Objective-C or anonymous struct/class/interface
Specify whether to mangle the aggregate as a class or a struct This information is used by the MSVC mangler Only valid for class and struct. TODO: Merge with ClassKind ?
overridden symbol with pragma(mangle, "...") if not null
!=null if is nested pointing to the dsymbol that directly enclosing it. 1. The function that enclosing it (nested struct and class) 2. The class that enclosing it (nested class only) 3. If enclosing aggregate is template, its enclosing dsymbol.
'this' parameter if this aggregate is nested
'this' parameter if this aggregate is a template and is nested
Array of invariants
Merged invariant calling all members of invs
CtorDeclaration or TemplateDeclaration
default constructor - should have no arguments, because it would be stored in TypeInfo_Class.defaultConstructor
forward unresolved lookups to aliasthis
user-defined destructors (~this()) - mixins can yield multiple ones
aggregate destructor calling userDtors and fieldDtor (and base class aggregate dtor for C++ classes)
the aggregate destructor exposed as __xdtor alias
(same as aggrDtor, except for C++ classes with virtual dtor on Windows) +//// aggregate destructor used in TypeInfo (must have extern(D) ABI
function destructing (non-inherited) fields
pointer to GC info generated by object.RTInfo(this)
no default construction
disallow allocations using new
set when structsize contains valid data
Create a new scope from sc. semantic, semantic2 and semantic3 will use this for aggregate members.
Collect all instance fields, then determine instance size.
Calculate fieldi.overlapped and overlapUnsafe, and check that all of explicit field initializers have unique memory space on instance.
Fill out remainder of elements[] with default initializers for fields[].
Flag this aggregate as deprecated
Returns true if there's an extra member which is the 'this' pointer to the enclosing context (enclosing aggregate or function)
Look for constructor declaration.
initializer symbol
All struct declarations are an instance of this.