+static JSValueRef Instance_complete_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+ if (!CYJSValueIsNSObject(context, _this))
+ return CYObjectMakeArray(context, 0, NULL);
+
+ Instance *internal(reinterpret_cast<Instance *>(JSObjectGetPrivate(_this)));
+ id self(internal->value_);
+
+ _assert(count == 1 || count == 2);
+ CYPool pool;
+ Class _class(object_getClass(self));
+
+ CYUTF8String prefix(CYPoolUTF8String(pool, context, CYJSString(context, arguments[0])));
+
+ JSObjectRef array(NULL); {
+ CYArrayBuilder<1024> values(context, array);
+
+ CYForEachProperty(pool, _class, fun([&](objc_method *method, const char *name) {
+ if (!CYStartsWith(name, prefix))
+ return;
+ const char *type(method_getTypeEncoding(method));
+ if (type == NULL || *type == '\0' || *type == 'v')
+ return;
+ if (class_getProperty(_class, name) != NULL)
+ return;
+ values(CYCastJSValue(context, CYJSString(pool.strcat(name, "()", NULL))));
+ }));
+ } return array;
+} CYCatchObject() }
+
+static JSObjectRef Constructor_callAsConstructor(JSContextRef context, JSObjectRef object, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+ auto internal(CYPrivate<Constructor>::Get(context, object));