From: Jay Freeman (saurik) Date: Thu, 9 Jan 2014 06:38:06 +0000 (-0800) Subject: Make Selector_callAsFunction_toJSON pass-through. X-Git-Tag: v0.9.500~92 X-Git-Url: https://git.saurik.com/cycript.git/commitdiff_plain/28b3d5a4ad96c5f2320bcb7618f03a39acb15127?ds=sidebyside Make Selector_callAsFunction_toJSON pass-through. --- diff --git a/ObjectiveC/Library.mm b/ObjectiveC/Library.mm index 1e4fece..be2fa88 100644 --- a/ObjectiveC/Library.mm +++ b/ObjectiveC/Library.mm @@ -2512,9 +2512,9 @@ static JSValueRef Selector_callAsFunction_toString(JSContextRef context, JSObjec return CYCastJSValue(context, sel_getName(internal->GetValue())); } CYCatch(NULL) } -static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { +static JSValueRef Selector_callAsFunction_toJSON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { return Selector_callAsFunction_toString(context, object, _this, count, arguments, exception); -} CYCatch(NULL) } +} static JSValueRef Selector_callAsFunction_toCYON(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry { Selector_privateData *internal(reinterpret_cast(JSObjectGetPrivate(_this)));