Revision: 2612
Author: [email protected]
Date: Mon Aug 3 08:14:42 2009
Log: Edited wiki page through web user interface.
http://code.google.com/p/v8/source/detail?r=2612
Modified:
/wiki/DebuggerProtocol.wiki
=======================================
--- /wiki/DebuggerProtocol.wiki Mon Aug 3 07:56:44 2009
+++ /wiki/DebuggerProtocol.wiki Mon Aug 3 08:14:42 2009
@@ -182,7 +182,7 @@
"body" : { "fromFrame" : <number>
"toFrame" : <number>
"totalFrames" : <number>
- "frames" : <array of frames - see `frame` request for
details>
+ "frames" : <array of frames - see frame request for
details>
}
"running" : <is the VM running after sending this response>
"success" : true
@@ -219,7 +219,28 @@
"type" : "response",
"request_seq" : <number>,
"command" : "frame",
- "body" : { ...
+ "body" : { "index" : <frame number>,
+ "receiver" : <frame receiver>,
+ "func" : <function invoked>,
+ "script" : <script for the function>,
+ "constructCall" : <boolean indicating whether the
function was called as constructor>,
+ "debuggerFrame" : <boolean indicating whether this is
an internal debugger frame>,
+ "arguments" : [ { name: <name of the argument -
missing of anonymous argument>,
+ value: <value of the argument>
+ },
+ ... <the array contains all the
arguments>
+ ],
+ "locals" : [ { name: <name of the local
variable>,
+ value: <value of the local
variable>
+ },
+ ... <the array contains all the
locals>
+ ],
+ "position" : <source position>,
+ "line" : <source line>,
+ "column" : <source column within the line>,
+ "sourceLineText" : <text for current source line>,
+ "scopes" : [ <array of scopes, see scope
request below for format> ],
+
}
"running" : <is the VM running after sending this response>
"success" : true
@@ -302,7 +323,7 @@
"body" : { "fromScope" : <number of first scope in response>,
"toScope" : <number of last scope in response>,
"totalScopes" : <total number of scopes for this
frame>,
- "scopes" : [ <array of scopes, see request scope above
for format> ],
+ "scopes" : [ <array of scopes, see scope request above
for format> ],
}
"running" : <is the VM running after sending this response>
"success" : true
--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---