Index: src/debug/debug.cc |
diff --git a/src/debug/debug.cc b/src/debug/debug.cc |
index 93c914c3f8db222ad54144a285caebc476d99c9b..42192b0b5340bebf36e94fadd38b1862c2241831 100644 |
--- a/src/debug/debug.cc |
+++ b/src/debug/debug.cc |
@@ -171,8 +171,9 @@ BreakLocation BreakLocation::CodeIterator::GetBreakLocation() { |
BreakLocation::BytecodeArrayIterator::BytecodeArrayIterator( |
Handle<DebugInfo> debug_info, BreakLocatorType type) |
: Iterator(debug_info), |
- source_position_iterator_( |
- debug_info->abstract_code()->GetBytecodeArray()), |
+ source_position_iterator_(debug_info->abstract_code() |
+ ->GetBytecodeArray() |
+ ->source_position_table()), |
break_locator_type_(type), |
start_position_(debug_info->shared()->start_position()) { |
if (!Done()) Next(); |