Reviewers: Yury Semikhatsky, Description: Fix presubmit.
[email protected] Please review this at http://codereview.chromium.org/197056 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/debug.cc Index: src/debug.cc =================================================================== --- src/debug.cc (revision 2853) +++ src/debug.cc (working copy) @@ -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 -~----------~----~----~----~------~----~------~--~---
