+ template <typename... Args_>
+ static JSObjectRef Make(JSContextRef context, Args_ &&... args) {
+ Internal_ *internal(new Internal_(cy::Forward<Args_>(args)...));
+ JSObjectRef object(JSObjectMake(context, Internal_::GetClass(cy::Forward<Args_>(args)...), internal));
+ if (JSValueRef prototype = internal->GetPrototype(context))
+ CYSetPrototype(context, object, prototype);
+ return object;
+ }
+
+ static Internal_ *Get(JSContextRef context, JSObjectRef object) {
+ _assert(JSValueIsObjectOfClass(context, object, Class_));
+ return static_cast<Internal_ *>(JSObjectGetPrivate(object));
+ }
+};
+
+struct Type_privateData :
+ CYPrivate<Type_privateData>
+{
+ ffi_type *ffi_;
+ sig::Type *type_;
+