Calculate fieldi.overlapped and overlapUnsafe, and check that all of explicit field initializers have unique memory space on instance.
Find all instance fields, then push them into fields.
Collect all instance fields, then determine instance size.
Fill out remainder of elements[] with default initializers for fields[].
Returns true if there's an extra member which is the 'this' pointer to the enclosing context (enclosing aggregate or function)
Create a new scope from sc. semantic, semantic2 and semantic3 will use this for aggregate members.
Look for constructor declaration.
Flag this aggregate as deprecated
Do byte or word alignment as necessary. Align sizes of 0, as we may not know array sizes yet.
Place a member (mem) into an aggregate (agg), which can be a struct, union or class
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 ?
This function is #1 on the list of functions that eat cpu time. Be very, very careful about slowing it down.
Look for member of the form: const(MemberInfo)[] getMembers(string); Returns NULL if not found
Look up identifier in symbol table.
Return true if any of the members are static ctors or static dtors, or if any members have members that are.
Expands attribute declarations in members in depth first order. Calls dg(size_t symidx, Dsymbol *sym) for each member. If dg returns !=0, stops and returns that value else returns 0. Use this function to avoid the O(N + N^2/2) complexity of calculating dim and calling N times getNth.