Class provides implementation of the identifier for expressions. It is being used by expression runners.
You can find more information in comments below. Overrided methods can be found in corresponding base class or interface.
class CFunctionIdentifier :public virtual CFunction
{
public:
// IFunction methods
bool Run() override;
CFunctionIdentifier(IErrorListener *error_listener, const String &value);
};
Namespace: | nitisa::script |
Include: | Nitisa/Modules/Script/Functions/General/FunctionIdentifier.h |