| 843 | } |
| 844 | |
| 845 | ResultType 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 | |
| 855 | ResultType Object::CallMetaVarg(int aFlags, LPTSTR aName, ResultToken &aResultToken, ExprTokenType &aThisToken, ExprTokenType *aParam[], int aParamCount) |
| 856 | { |
nothing calls this directly
no test coverage detected