From 0fb04e3460d2257d1d8fcec5b035d307ba494957 Mon Sep 17 00:00:00 2001 From: "peter.rybin@gmail.com" Date: Fri, 14 May 2010 19:20:07 +0000 Subject: [PATCH] Remove tabs Review URL: http://codereview.chromium.org/2132003 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@4657 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- src/d8.js | 10 +++++----- src/debug-debugger.js | 30 +++++++++++++++--------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/src/d8.js b/src/d8.js index 455aa6f..5c3da13 100644 --- a/src/d8.js +++ b/src/d8.js @@ -963,8 +963,8 @@ function DebugResponseDetails(response) { break; case 'listbreakpoints': - result = 'breakpoints: (' + body.breakpoints.length + ')'; - for (var i = 0; i < body.breakpoints.length; i++) { + result = 'breakpoints: (' + body.breakpoints.length + ')'; + for (var i = 0; i < body.breakpoints.length; i++) { var breakpoint = body.breakpoints[i]; result += '\n id=' + breakpoint.number; result += ' type=' + breakpoint.type; @@ -991,9 +991,9 @@ function DebugResponseDetails(response) { result += ' condition=' + breakpoint.condition; } result += ' hit_count=' + breakpoint.hit_count; - } - details.text = result; - break; + } + details.text = result; + break; case 'backtrace': if (body.totalFrames == 0) { diff --git a/src/debug-debugger.js b/src/debug-debugger.js index 369a02c..77fa1dd 100644 --- a/src/debug-debugger.js +++ b/src/debug-debugger.js @@ -1586,27 +1586,27 @@ DebugCommandProcessor.prototype.clearBreakPointRequest_ = function(request, resp DebugCommandProcessor.prototype.listBreakpointsRequest_ = function(request, response) { var array = []; for (var i = 0; i < script_break_points.length; i++) { - var break_point = script_break_points[i]; - - var description = { - number: break_point.number(), - line: break_point.line(), - column: break_point.column(), - groupId: break_point.groupId(), - hit_count: break_point.hit_count(), - active: break_point.active(), - condition: break_point.condition(), - ignoreCount: break_point.ignoreCount() - } - + var break_point = script_break_points[i]; + + var description = { + number: break_point.number(), + line: break_point.line(), + column: break_point.column(), + groupId: break_point.groupId(), + hit_count: break_point.hit_count(), + active: break_point.active(), + condition: break_point.condition(), + ignoreCount: break_point.ignoreCount() + } + if (break_point.type() == Debug.ScriptBreakPointType.ScriptId) { description.type = 'scriptId'; - description.script_id = break_point.script_id(); + description.script_id = break_point.script_id(); } else { description.type = 'scriptName'; description.script_name = break_point.script_name(); } - array.push(description); + array.push(description); } response.body = { breakpoints: array } -- 2.7.4