Index: src/debug-debugger.js |
diff --git a/src/debug-debugger.js b/src/debug-debugger.js |
index d9e0ecdd56b59f6d3a84057c84e64b8ad2bbe13d..ccec6af2fce28be88faeffaf87741234217ab03e 100644 |
--- a/src/debug-debugger.js |
+++ b/src/debug-debugger.js |
@@ -124,6 +124,12 @@ BreakPoint.prototype.source_position = function() { |
}; |
+BreakPoint.prototype.updateSourcePosition = function(new_position, script) { |
+ this.source_position_ = new_position; |
+ // TODO(635): also update line and column. |
+}; |
+ |
+ |
BreakPoint.prototype.hit_count = function() { |
return this.hit_count_; |
}; |