Revision: 2854 Author: [email protected] Date: Wed Sep 9 02:58:00 2009 Log: Fix presubmit.
[email protected] Review URL: http://codereview.chromium.org/197056 http://code.google.com/p/v8/source/detail?r=2854 Modified: /branches/bleeding_edge/src/debug.cc ======================================= --- /branches/bleeding_edge/src/debug.cc Wed Sep 9 01:40:59 2009 +++ /branches/bleeding_edge/src/debug.cc Wed Sep 9 02:58:00 2009 @@ -1199,7 +1199,7 @@ if (it.IsExit() || step_action == StepOut) { if (step_action == StepOut) { // Skip step_count frames starting with the current one. - while(step_count-- > 0 && !frames_it.done()) { + while (step_count-- > 0 && !frames_it.done()) { frames_it.Advance(); } } else { @@ -1207,8 +1207,8 @@ frames_it.Advance(); } // Skip builtin functions on the stack. - while(!frames_it.done() && - JSFunction::cast(frames_it.frame()->function())->IsBuiltin()) { + while (!frames_it.done() && + JSFunction::cast(frames_it.frame()->function())->IsBuiltin()) { frames_it.Advance(); } // Step out: If there is a JavaScript caller frame, we need to --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
