*out_ << "debug == " << (debug ? "true" : "false") << std::endl;
} else if (data == "destroy") {
CYDestroyContext();
+ } else if (data == "gc") {
+ CYGarbageCollect(CYGetJSContext());
} else if (data == "expand") {
expand = !expand;
*out_ << "expand == " << (expand ? "true" : "false") << std::endl;
return CYCastJSValue(context, name);
} CYCatch(NULL) }
-static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+
+void CYGarbageCollect(JSContextRef context) {
JSGarbageCollect(context);
+}
+
+static JSValueRef Cycript_gc_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+ CYGarbageCollect(context);
return CYJSUndefined(context);
} CYCatch(NULL) }
JSStringRef CYCopyJSString(CYUTF8String value);
JSStringRef CYCopyJSString(JSContextRef context, JSValueRef value);
+void CYGarbageCollect(JSContextRef context);
void CYDestroyContext();
class CYJSString {