Access

package haxe.macro

import haxe.macro.Expr

Available on all platforms

Represents an access modifier.

See also:

Values

APublic

Public access modifier, grants access from anywhere.

See also:

APrivate

Private access modifier, grants access to class and its sub-classes only.

See also:

AStatic

Static access modifier.

AOverride

Override access modifier.

See also:

ADynamic

Dynamic (re-)bindable access modifier.

See also:

AInline

Inline access modifier. Allows expressions to be directly inserted in place of calls to them.

See also:

AMacro

Macro access modifier. Allows expression macro functions. These are normal functions which are executed as soon as they are typed.

AFinal

Final access modifier. For functions, they can not be overridden. For variables, it means they can be assigned to only once.

AExtern

Extern access modifier.

© 2005–2020 Haxe Foundation
Licensed under a MIT license.
https://api.haxe.org/haxe/macro/Access.html