summaryrefslogtreecommitdiffstats
path: root/V8Binding/v8/include/v8-debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'V8Binding/v8/include/v8-debug.h')
-rw-r--r--V8Binding/v8/include/v8-debug.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/V8Binding/v8/include/v8-debug.h b/V8Binding/v8/include/v8-debug.h
index 345d331..3c5c923 100644
--- a/V8Binding/v8/include/v8-debug.h
+++ b/V8Binding/v8/include/v8-debug.h
@@ -228,9 +228,14 @@ class EXPORT Debug {
* }
* \endcode
*/
- static Handle<Value> Call(v8::Handle<v8::Function> fun,
+ static Local<Value> Call(v8::Handle<v8::Function> fun,
Handle<Value> data = Handle<Value>());
+ /**
+ * Returns a mirror object for the given object.
+ */
+ static Local<Value> GetMirror(v8::Handle<v8::Value> obj);
+
/**
* Enable the V8 builtin debug agent. The debugger agent will listen on the
* supplied TCP/IP port for remote debugger connection.