Reviewers: Kasper Lund, Description: Fix lint errors because of long line.
Please review this at http://codereview.chromium.org/21449 SVN Base: http://v8.googlecode.com/svn/branches/bleeding_edge/ Affected files: M src/scopes.cc Index: src/scopes.cc =================================================================== --- src/scopes.cc (revision 1298) +++ src/scopes.cc (working copy) @@ -444,7 +444,9 @@ if (scope_calls_eval_) Indent(n1, "// scope calls 'eval'\n"); if (outer_scope_calls_eval_) Indent(n1, "// outer scope calls 'eval'\n"); if (inner_scope_calls_eval_) Indent(n1, "// inner scope calls 'eval'\n"); - if (outer_scope_is_eval_scope_) Indent(n1, "// outer scope is 'eval' scope\n"); + if (outer_scope_is_eval_scope_) { + Indent(n1, "// outer scope is 'eval' scope\n"); + } if (num_stack_slots_ > 0) { Indent(n1, "// "); PrintF("%d stack slots\n", num_stack_slots_); } if (num_heap_slots_ > 0) { Indent(n1, "// "); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
