]> git.saurik.com Git - cycript.git/blobdiff - Exception.hpp
Factor JSValueRef exception arguments to _jsccall.
[cycript.git] / Exception.hpp
index 9f6a81a5e8f72a69479628914c31f1a50c082729..0410fd151398755ab8593cab38bf68e1b1b373f8 100644 (file)
@@ -103,4 +103,28 @@ void CYThrow(JSContextRef context, JSValueRef value);
     _value; \
 })
 
+struct CYJSException {
+    JSContextRef context_;
+    JSValueRef value_;
+
+    CYJSException(JSContextRef context) :
+        context_(context),
+        value_(NULL)
+    {
+    }
+
+    ~CYJSException() {
+        CYThrow(context_, value_);
+    }
+
+    operator JSValueRef *() {
+        return &value_;
+    }
+};
+
+#define _jsccall(code, args...) ({ \
+    CYJSException _error(context); \
+    (code)(args, _error); \
+})
+
 #endif/*CYCRIPT_ERROR_HPP*/