View source code
							
							
						
								Display the source code in dmd/func.d from which thispage was generated on github.
							
						
							Report a bug
							
						
								If you spot a problem with this page, click here to create aBugzilla 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 usinglocal clone.
							
						Class dmd.func.DtorDeclaration
				
						
					
				Fields
| Name | Type | Description | 
|---|---|---|
| alignSectionVars | dmd | local variables with alignment needs larger than stackAlign | 
| builtin | dmd | set if this is a known, builtin function we can evaluate at compile time | 
| closureVars | dmd | local variables in this function which are referenced by nested functions (They'll get put into the "closure" for this function.) | 
| endloc | Loc | location of closing curly bracket | 
| fbody | Statement | function body | 
| fes | ForeachStatement | if foreach body, this is the foreach | 
| foverrides | dmd | functions this function overrides | 
| gotos | dmd | Gotos with forward references | 
| inlineNest | int | !=0 if nested inline | 
| interfaceVirtual | BaseClass* | if virtual, but only appears in base interface vtbl[] | 
| isTypeIsolatedCache | bool[ulong] | cache for the potentially very expensive isTypeIsolated check | 
| labtab | DsymbolTable | statement label symbol table | 
| localNum | ushort | perturb mangled name to avoid collisions with those in FuncDeclaration.localsymtab | 
| mangleString | const(char)* | mangled symbol created from mangleExact() | 
| nrvo_var | VarDeclaration | variable to replace with shidden | 
| objc | ObjcFuncDeclaration | Data for a function declaration that is needed for the Objective-C integration. | 
| outerVars | dmd | Outer variables which are referenced by this nested function (the inverse of closureVars) | 
| overnext | Dsymbol | next in overload list | 
| overnext0 | FuncDeclaration | next in overload list (only used during IFTI) | 
| parameters | dmd | Array of VarDeclaration's for parameters | 
| returnLabel | LabelDsymbol | where the return goes | 
| safetyViolation | AttributeViolation* | In case of failed @safeinference, store the error that made the function@systemfor
better diagnostics | 
| salignSection | dmd | pointer to aligned section, if any | 
| shidden | dmd | hidden pointer passed to function | 
| siblingCallers | dmd | Sibling nested functions which called this one | 
| storage_class2 | dmd | storage class for template onemember's | 
| tintro | Type | if !=NULL, then this is the type of the 'introducing' function this one is overriding | 
| tookAddressOf | int | set if someone took the address of this function | 
| v_argptr | VarDeclaration | 'argptr' variable | 
| v_arguments | VarDeclaration | 'arguments' parameter | 
| vresult | VarDeclaration | result variable for out contracts | 
| vtblIndex | int | for member functions, index into vtbl[] | 
| vthis | VarDeclaration | 'this' parameter (member and nested) | 
Methods
| Name | Description | 
|---|---|
| accept(v) | |
| addComment(comment) | Add documentation comment to Dsymbol. Ignore NULL comments. | 
| arraySyntaxCopy(a) | Do syntax copy of an array of Dsymbol's. | 
| comment() | get documentation comment for this Dsymbol | 
| ddocUnittest() | Get ddoc unittest associated with this symbol. (only use this with ddoc) | 
| ddocUnittest(utd) | Set ddoc unittest associated with this symbol. | 
| deinitialize() | Deinitializes the global state of the compiler. | 
| factory(classname) | Create instance of class specified by the fully qualified name classname. The class must either have no constructors or have a default constructor. | 
| findTemplateDeclRoot() | find function template root in overload list | 
| followInstantiationContext(p1, p2) | Returns true if any of the symbols p1orp2resides in the enclosing
 instantiation scope ofthis. | 
| genCfunc(fparams, treturn, name, stc) | Generate a FuncDeclaration for a runtime library function. | 
| getAccessModule() | Determine which Module a Dsymbol is in, as far as access rights go. | 
| getLevel(fd, intypeof) | Determine lexical level difference from thisto nested functionfd. | 
| getModule() | Determine which Module a Dsymbol is in. | 
| getParameterList() | |
| hasNestedFrameRefs() | Determine if function's variables are referenced by a function nested within it. | 
| hasPointers() | Is Dsymbol a variable that contains pointers? | 
| inNonRoot() | Returns true if this symbol is defined in a non-root module without instantiation. | 
| inUnittest() | Returns true if function was declared directly or indirectly in a unittest block | 
| isAbstract() | Override so it can work even if semantic() hasn't yet been run. | 
| isCsymbol() | Does this Dsymbol come from a C file? | 
| isMember() | Returns an AggregateDeclaration when toParent() is that. | 
| isMember2() | Returns an AggregateDeclaration when toParent2() is that. | 
| isMemberDecl() | Returns an AggregateDeclaration when toParentDecl() is that. | 
| isMemberLocal() | Returns an AggregateDeclaration when toParentLocal() is that. | 
| isNested() | Determine if function needs a static frame pointer. | 
| isReference() | |
| isThis() | Determine if function is a non-static member function that has an implicit 'this' expression. | 
| isUnique() | |
| needsClosure() | Look at all the variables in this function that are referenced by nested functions, and determine if a closure needs to be created for them. | 
| oneMembers(members, ps, ident) | Same as Dsymbol::oneMember(), but look at an array of Dsymbols. | 
| opCmp(o) | Compare with another Object obj. | 
| opEquals(o) | Test whether thisis equal too.
 The default implementation only compares by identity (using theisoperator).
 Generally, overrides and overloads foropEqualsshould attempt to compare objects by their contents.
 A class will most likely want to add an overload that takes your specific type as the argument
 and does the content comparison. Then you can override this and forward it to your specific
 typed overload with a cast. Remember to check fornullon the typed overload. | 
| overloadInsert(s) | Overload this FuncDeclaration with the new one f. Return true if successful; i.e. no conflict. | 
| pastMixin() | pastMixinreturns the enclosing symbol if this is a template mixin. | 
| resolvedLinkage() | Returns the linkage, resolving the target-specific Systemone. | 
| searchLabel(ident, loc) | Searches for a label with the given identifier. This function will insert a new LabelDsymbolintolabtabif it does not contain a mapping forident. | 
| setThrow(loc, format, args) | The function is doing something that may throw an exception, register that in case nothrow is being inferred | 
| setThrowCall(loc, fd) | The function calls non- nothrowfunction f, register that in case nothrow is being inferred | 
| size(loc) | |
| syntaxCopy(s) | Copy the syntax. Used for template instantiations. If s is NULL, allocate the new object, otherwise fill it in. | 
| toAlias() | If this symbol is really an alias for another, return that other. If needed, semantic() is invoked due to resolve forward reference. | 
| toAlias2() | Resolve recursive tuple expansion in eponymous template. | 
| toFullSignature() | for diagnostics, e.g. 'int foo(int x, int y) pure' | 
| toHash() | Compute hash function for Object. | 
| toParent() | parentfield returns a lexically enclosing scope symbol this is a member of. | 
| toParent2() | parentfield returns a lexically enclosing scope symbol this is a member of. | 
| toParentDecl() | parentfield returns a lexically enclosing scope symbol this is a member of. | 
| toParentLocal() | parentfield returns a lexically enclosing scope symbol this is a member of. | 
| toParentP(p1, p2) | Returns the declaration scope scope of thisunless any of the symbolsp1orp2resides in its enclosing instantiation scope then the
 latter is returned. | 
| toString() | |
| toString() | Convert Object to a human readable string. | 
| visible() | 
Authors
License
					Copyright © 1999-2025 by the D Language Foundation | Page generated by ddox.