Index: src/debug/debug.cc |
diff --git a/src/debug/debug.cc b/src/debug/debug.cc |
index 7d16ed0619db5fbd5b6bf8d32a6caf92feb791c6..1ea420fefe8e1eda7a9f3bf57fc02c13383d8e1f 100644 |
--- a/src/debug/debug.cc |
+++ b/src/debug/debug.cc |
@@ -170,9 +170,8 @@ |
BreakLocation::BytecodeArrayIterator::BytecodeArrayIterator( |
Handle<DebugInfo> debug_info, BreakLocatorType type) |
: Iterator(debug_info), |
- source_position_iterator_(debug_info->abstract_code() |
- ->GetBytecodeArray() |
- ->source_position_table()), |
+ source_position_iterator_( |
+ debug_info->abstract_code()->GetBytecodeArray()), |
break_locator_type_(type), |
start_position_(debug_info->shared()->start_position()) { |
if (!Done()) Next(); |