INVOKEKIND
enum INVOKEKIND
Specifies the way a function is invoked.
INVOKE_FUNC = 1
The member is called using a normal function invocation syntax.
The function is invoked using a normal property-access syntax.
The function is invoked using a property value assignment syntax. Syntactically, a typical programming language might represent changing a property in the same way as assignment. For example: object.property : = value.
The function is invoked using a property reference assignment syntax.