I create several JSObjects like this: js_object= JSObjectMakeConstructor(context, object_jsclass, Object_Constructor); globalObject = JSContextGetGlobalObject(context); jsstr = JSStringCreateWithUTF8CString("MyObject"); JSObjectSetProperty(context, globalObject, jsstr, js_object, kJSPropertyAttributeNone, NULL);
>From JavaScript i have: "MyObject obj= new MyObject();" The problem is that the objects are never destroyed. What can i do to release all these objects? -- View this message in context: http://www.nabble.com/how-to-destroy-JSObjescts--tp20684186p20684186.html Sent from the Webkit mailing list archive at Nabble.com. _______________________________________________ webkit-dev mailing list webkit-dev@lists.webkit.org http://lists.webkit.org/mailman/listinfo.cgi/webkit-dev