+static JSValueRef Cycript_compile_callAsFunction(JSContextRef context, JSObjectRef object, JSObjectRef _this, size_t count, const JSValueRef arguments[], JSValueRef *exception) { CYTry {
+ CYPool pool;
+ std::stringstream value(CYPoolCString(pool, context, arguments[0]));
+ CYUTF8String code(CYPoolCode(pool, value));
+ return CYCastJSValue(context, CYJSString(code));
+} CYCatch(NULL) }
+