I've created an implementation of the debug protocol for debugging running
node processes. It seems to work fine in all respects except that break
points don't seem to have any effect.
I set a breakpoint, which succeeds and then send a continue message but the
program continues looping with stopping at the breakpoint. Here's an
example of the return message after setting a breakpoint:
{
"seq":3,
"request_seq":3,
"type":"response",
"command":"setbreakpoint",
"success":true,
"body":{
"type":"scriptName",
"breakpoint":1,
"script_name":"/Users/gmartin/Development/javascript/tests/test_loop.js",
"line":20,
"column":null,
"actual_locations":[
{
"line":20,
"column":0,
"script_id":23
}
]
},
"refs":[
],
"running":false
}
--
--
v8-users mailing list
[email protected]
http://groups.google.com/group/v8-users
---
You received this message because you are subscribed to the Google Groups
"v8-users" 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/groups/opt_out.