Revision: 21294
Author: [email protected]
Date: Wed May 14 07:54:50 2014 UTC
Log: Edited wiki page DebuggerProtocol through web user interface.
http://code.google.com/p/v8/source/detail?r=21294
Modified:
/wiki/DebuggerProtocol.wiki
=======================================
--- /wiki/DebuggerProtocol.wiki Tue Aug 30 10:41:01 2011 UTC
+++ /wiki/DebuggerProtocol.wiki Wed May 14 07:54:50 2014 UTC
@@ -639,18 +639,6 @@
{"seq":1,"type":"request","command":"version"}
{"seq":134,"request_seq":1,"type":"response","command":"version","success":true,"body":{"V8Version":"1.3.19
(candidate)"},"refs":[],"running":false}
}}}
-
-== Request `profile` ==
-
-The request `profile` controls profiling. This is similar to
`v8::ResumeProfiler` and `v8::PauseProfiler` API calls (see
[http://code.google.com/p/v8/source/browse/branches/bleeding_edge/include/v8.h
v8.h] for details.)
-
-{{{
-{ "seq" : <number>,
- "type" : "request",
- "command" : "profile",
- "arguments" : { "command" : "resume" or "pause" }
-}
-}}}
== Request `disconnect` ==
@@ -748,6 +736,37 @@
{{{
{"seq":117,"type":"request","command":"listbreakpoints"}
}}}
+
+
+== Request `setvariablevalue` ==
+This requests sets the value of a variable from the specified scope.
+
+Request:
+
+{{{
+{ "seq" : <number>,
+ "type" : "request",
+ "command" : "setvariablevalue",
+ "arguments : { "name" : <string: variable name>,
+ "scope" : { "number" : <scope number>
+ "frameNumber" : <frame number, optional uses
selected frame if missing>
+ }
+ }
+}
+}}}
+
+Response:
+
+{{{
+{ "seq" : <number>,
+ "type" : "response",
+ "request_seq" : <number>,
+ "type" : "request",
+ "body" : { "newValue": <object: mirror object of the new value>
}
+ "running" : <is the VM running after sending this response>
+ "success" : true
+}
+}}}
= Events =
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/d/optout.