| 1649 | |
| 1650 | |
| 1651 | bool Func::Call(ResultToken &aResultToken, ExprTokenType *aParam[], int aParamCount) |
| 1652 | { |
| 1653 | if (aParamCount > mParamCount && !mIsVariadic) // v2 policy. |
| 1654 | { |
| 1655 | aResultToken.Error(ERR_TOO_MANY_PARAMS, mName); |
| 1656 | return false; |
| 1657 | } |
| 1658 | return true; |
| 1659 | } |
| 1660 | |
| 1661 | bool NativeFunc::Call(ResultToken &aResultToken, ExprTokenType *aParam[], int aParamCount) |
| 1662 | { |
nothing calls this directly
no test coverage detected