Reviewers: Mads Ager, Description: Missed a few comment changes in r1508.
Please review this at http://codereview.chromium.org/42175 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/debug.cc Index: src/debug.cc =================================================================== --- src/debug.cc (revision 1509) +++ src/debug.cc (working copy) @@ -1958,7 +1958,8 @@ return; } - // Notify the debugger that a debug event has occurred. + // Notify the debugger that a debug event has occurred unless auto continue is + // active in which case no event is send. if (!auto_continue) { bool success = SetEventJSONFromEvent(event_data); if (!success) { @@ -2051,7 +2052,9 @@ // Return the result. SendMessage(str); - // Return from debug event processing is VM should be running. + // Return from debug event processing if either the VM is put into the + // runnning state (through a continue command) or auto continue is active + // and there are no more commands queued. if (running || (auto_continue && !HasCommands())) { return; } --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
