Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index fe020819c0b382af4a1891553cf85e5c5ee5284d..4d99d151522b98b22d8d10fc2ec5e2f0b77e7798 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -4840,15 +4840,14 @@ class V8_EXPORT V8 { |
/** |
* Forcefully terminate the current thread of JavaScript execution |
- * in the given isolate. If no isolate is provided, the default |
- * isolate is used. |
+ * in the given isolate. |
* |
* This method can be used by any thread even if that thread has not |
* acquired the V8 lock with a Locker object. |
* |
* \param isolate The isolate in which to terminate the current JS execution. |
*/ |
- static void TerminateExecution(Isolate* isolate = NULL); |
Paweł Hajdan Jr.
2014/04/17 14:24:07
Shouldn't this go through V8_DEPRECATED first?
|
+ static void TerminateExecution(Isolate* isolate); |
/** |
* Is V8 terminating JavaScript execution. |