| Index: src/debug-debugger.js
|
| diff --git a/src/debug-debugger.js b/src/debug-debugger.js
|
| index 369a02c446db4136ce5c32c8388483b5542e16d4..77fa1ddd65e2c3623540e6b1acb399470ff0cc98 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 }
|
|
|