View source code
							
							
						
								Display the source code in dmd/dmodule.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.
							
						Class dmd.dmodule.Module
				
						
					
				Fields
| Name | Type | Description | 
|---|---|---|
| importedFrom | Module | A root module is one that will be compiled all the way to
 object code.  This field holds the root module that caused
 this module to be loaded.  If this module is a root module,
 then it will be set to this.  This is used to determine
 ownership of template instantiation. | 
| cppnamespace | CPPNamespaceDeclaration | C++ namespace this symbol belongs to | 
Methods
| Name | Description | 
|---|---|
| addDeferredSemantic | Can't run semantic on s now, try again later. | 
| checkImportDeprecation | Print deprecation warning if we're deprecated, when this module is imported from scope sc. | 
| deinitialize | Deinitializes the global state of the compiler. | 
| fullyQualifiedName | Writes this module's fully-qualified name to buf | 
| imports | Recursively look at every module this module imports, return true if it imports m. Can be used to detect circular imports. | 
| loadSourceBuffer | Loads the source buffer from the given read result into this. | 
| needModuleInfo | Determine if we need to generate an instance of ModuleInfo for this Module. | 
| parse | syntactic parse | 
| read | Reads the file from srcfileand loads the source buffer. | 
| rootImports | Return true if module imports root module. | 
| runDeferredSemantic | Run semantic() on deferred symbols. | 
| selfImports | Return true if module imports itself. | 
| setOutfilename | Combines things into output file name for .html and .di files. | 
| _foreach | 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. | 
| accept | |
| addComment | Add documentation comment to Dsymbol. Ignore NULL comments. | 
| apply | Iterate this dsymbol or members of this scoped dsymbol, then
 call fpwith the found symbol andparam. | 
| arraySyntaxCopy | Do syntax copy of an array of Dsymbol's. | 
| factory | Create instance of class specified by the fully qualified name classname. The class must either have no constructors or have a default constructor. | 
| findGetMembers | Look for member of the form: const(MemberInfo)[] getMembers(string); Returns NULL if not found | 
| followInstantiationContext | Returns true if any of the symbols p1orp2resides in the enclosing
 instantiation scope ofthis. | 
| getAccessModule | Determine which Module a Dsymbol is in, as far as access rights go. | 
| getModule | Determine which Module a Dsymbol is in. | 
| hasPointers | Is Dsymbol a variable that contains pointers? | 
| hasStaticCtorOrDtor | Return true if any of the members are static ctors or static dtors, or if any members have members that are. | 
| inNonRoot | Returns true if this symbol is defined in a non-root module without instantiation. | 
| isAncestorPackageOf | Checks if pkg is a sub-package of this | 
| 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. | 
| oneMember | Determine if this symbol is only one. | 
| oneMembers | Same as Dsymbol::oneMember(), but look at an array of Dsymbols. | 
| opCmp | Compare with another Object obj. | 
| opEquals | Test whether thisis equal too.
 The default implementation only compares by identity (using theisoperator).
 Generally, overrides foropEqualsshould attempt to compare objects by their contents. | 
| pastMixin | pastMixinreturns the enclosing symbol if this is a template mixin. | 
| prot | |
| resolve | |
| resolvePKGunknown | Checks for the existence of a package.d to set isPkgMod appropriately if isPkgMod == PKG.unknown | 
| search | This function is #1 on the list of functions that eat cpu time. Be very, very careful about slowing it down. | 
| searchX | Search for identifier id as a member of this.idmay be a template instance. | 
| setScope | Set scope for future semantic analysis so we can deal better with forward references. | 
| size | |
| symtabLookup | Look up identifier in symbol table. | 
| syntaxCopy | 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. | 
| 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 | 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. | 
Authors
License
					Copyright © 1999-2022 by the D Language Foundation | Page generated by ddox.