| 751 | |
| 752 | |
| 753 | ResultType Object::CallBuiltin(int aID, ResultToken &aResultToken, ExprTokenType *aParam[], int aParamCount) |
| 754 | { |
| 755 | switch (aID) |
| 756 | { |
| 757 | case FID_ObjOwnPropCount: return PropCount(aResultToken, 0, IT_CALL, aParam, aParamCount); |
| 758 | case FID_ObjHasOwnProp: return HasOwnProp(aResultToken, 0, IT_CALL, aParam, aParamCount); |
| 759 | case FID_ObjGetCapacity: return GetCapacity(aResultToken, 0, IT_CALL, aParam, aParamCount); |
| 760 | case FID_ObjSetCapacity: return SetCapacity(aResultToken, 0, IT_CALL, aParam, aParamCount); |
| 761 | case FID_ObjOwnProps: return OwnProps(aResultToken, 0, IT_CALL, aParam, aParamCount); |
| 762 | } |
| 763 | return INVOKE_NOT_HANDLED; |
| 764 | } |
| 765 | |
| 766 | |
| 767 | ObjectMember Map::sMembers[] = |
no test coverage detected