dmd.access

Enforce visibility contrains such as public and private.

Specification: Visibility Attributes

Members

Functions

checkAccess
bool checkAccess(AggregateDeclaration ad, Loc loc, Scope* sc, Dsymbol smember)

Do access check for member of this class, this class being the type of the 'this' pointer used to access smember. Returns true if the member is not accessible.

checkAccess
bool checkAccess(Loc loc, Scope* sc, Expression e, Dsymbol d)

Check access to d for expression e.d Returns true if the declaration is not accessible.

checkAccess
bool checkAccess(Scope* sc, Package p)

Check access to package/module p from scope sc.

checkSymbolAccess
bool checkSymbolAccess(Scope* sc, Dsymbol s)

Check if a symbol is visible from a given scope without taking into account the most visible overload.

mostVisibleOverload
Dsymbol mostVisibleOverload(Dsymbol s, Module mod)

Use the most visible overload to check visibility. Later perform an access check on the resolved overload. This function is similar to overloadApply, but doesn't recurse nor resolve aliases because visibility is an attribute of the alias not the aliasee.

symbolIsVisible
bool symbolIsVisible(Module mod, Dsymbol s)

Check whether symbols s is visible in mod.

symbolIsVisible
bool symbolIsVisible(Dsymbol origin, Dsymbol s)

Same as above, but determines the lookup module from symbols origin.

symbolIsVisible
bool symbolIsVisible(Scope* sc, Dsymbol s)

Same as above but also checks for protected symbols visible from scope sc. Used for qualified name lookup.

Meta

Suggestion Box / Bug Report