} }
JSObjectRef Instance::Make(JSContextRef context, id object, Flags flags) {
- JSObjectRef value(JSObjectMake(context, Instance_, new Instance(object, flags)));
+ JSObjectRef value(JSObjectMake(context, [object isKindOfClass:NSBlock_] ? FunctionInstance_ : Instance_, new Instance(object, flags)));
JSObjectSetPrototype(context, value, CYGetClassPrototype(context, object_getClass(object)));
return value;
}
/* }}} */
_finline bool CYJSValueIsNSObject(JSContextRef context, JSValueRef value) {
- return JSValueIsObjectOfClass(context, value, Instance_);
+ return JSValueIsObjectOfClass(context, value, Instance_) || JSValueIsObjectOfClass(context, value, FunctionInstance_);
}
_finline bool CYJSValueIsInstanceOfCachedConstructor(JSContextRef context, JSValueRef value, JSStringRef cache) {
return descriptor3->signature;
}
-static JSValueRef Instance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+static JSValueRef FunctionInstance_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(object)));
id self(internal->GetValue());
- if (![self isKindOfClass:NSBlock_])
- CYThrow("non-NSBlock object is not a function");
- // XXX: replace above logic with the following assertion
- //_assert([self isKindOfClass:NSBlock_]);
- // to do this, make it so FunctionInstance_ is the class of blocks
- // to do /that/, generalize the various "is exactly Instance_" checks
- // then, move Instance_callAsFunction to only be on FunctionInstance
-
if (const char *encoding = CYBlockEncoding(self)) {
CYPool pool;
definition.deleteProperty = &Instance_deleteProperty;
definition.getPropertyNames = &Instance_getPropertyNames;
definition.callAsConstructor = &Instance_callAsConstructor;
- definition.callAsFunction = &Instance_callAsFunction;
definition.hasInstance = &Instance_hasInstance;
definition.finalize = &CYFinalize;
Instance_ = JSClassCreate(&definition);
BooleanInstance_ = JSClassCreate(&definition);
definition.className = "FunctionInstance";
+ definition.callAsFunction = &FunctionInstance_callAsFunction;
FunctionInstance_ = JSClassCreate(&definition);
definition.className = "NumberInstance";