MCPcopy Create free account
hub / github.com/AutoHotkey/AutoHotkey / CallMeta

Method CallMeta

source/script_object.cpp:845–853  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

843}
844
845ResultType Object::CallMeta(LPTSTR aName, ResultToken &aResultToken, ExprTokenType &aThisToken, ExprTokenType *aParam[], int aParamCount)
846{
847 IObject *method;
848 if (method = GetMethod(aName))
849 {
850 return CallAsMethod(ExprTokenType(method), aResultToken, aThisToken, aParam, aParamCount);
851 }
852 return INVOKE_NOT_HANDLED;
853}
854
855ResultType Object::CallMetaVarg(int aFlags, LPTSTR aName, ResultToken &aResultToken, ExprTokenType &aThisToken, ExprTokenType *aParam[], int aParamCount)
856{

Callers

nothing calls this directly

Calls 1

ExprTokenTypeClass · 0.85

Tested by

no test coverage detected