Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 62a1cb32906e57d8641373278678bb73b034ac63..9c8ccc4a5dc4238c6ee5432371dbc177f4828049 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -3797,6 +3797,10 @@ typedef void (*MessageCallback)(Handle<Message> message, Handle<Value> error); |
* operation; the caller must return immediately and only after the exception |
* has been handled does it become legal to invoke JavaScript operations. |
*/ |
+Local<Value> V8_EXPORT ThrowException(Isolate* isolate, |
Michael Starzinger
2013/09/25 09:18:08
Does it make sense to even move this into the Isol
dcarney
2013/09/25 09:29:36
sounds superior
|
+ Local<Value> exception); |
+ |
+// TODO(dcarney): remove |
Handle<Value> V8_EXPORT ThrowException(Handle<Value> exception); |
/** |