- void Set(sig::Type *type) {
- type_ = new(pool_) sig::Type;
- sig::Copy(pool_, *type_, *type);
+ template <typename Arg_>
+ static JSObjectRef Cache(JSContextRef context, Arg_ *arg) {
+ JSObjectRef global(CYGetGlobalObject(context));
+ JSObjectRef cy(CYCastJSObject(context, CYGetProperty(context, global, cy_s)));
+
+ char label[32];
+ sprintf(label, "%s%p", Internal_::Cache_, arg);
+ CYJSString name(label);
+
+ JSValueRef value(CYGetProperty(context, cy, name));
+ if (!JSValueIsUndefined(context, value))
+ return CYCastJSObject(context, value);
+
+ JSObjectRef object(Make(context, arg));
+ CYSetProperty(context, cy, name, object);
+ return object;