Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(187)

Unified Diff: src/debug/debug.cc

Issue 2788413004: [inspector] cache stack frame for call sites (Closed)
Patch Set: rebased Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« src/api.cc ('K') | « src/compiler/types.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/debug/debug.cc
diff --git a/src/debug/debug.cc b/src/debug/debug.cc
index 73af4cf7f71b390b7f0b46462417479273cb8dae..03fa99d4a453168afd357d0b214093966cdc7e8d 100644
--- a/src/debug/debug.cc
+++ b/src/debug/debug.cc
@@ -186,7 +186,7 @@ CodeBreakIterator::CodeBreakIterator(Handle<DebugInfo> debug_info)
: BreakIterator(debug_info),
reloc_iterator_(debug_info->DebugCode(), GetModeMask()),
source_position_iterator_(
- debug_info->DebugCode()->source_position_table()) {
+ debug_info->DebugCode()->SourcePositionTable()) {
// There is at least one break location.
DCHECK(!Done());
Next();
@@ -277,7 +277,7 @@ BytecodeArrayBreakIterator::BytecodeArrayBreakIterator(
Handle<DebugInfo> debug_info)
: BreakIterator(debug_info),
source_position_iterator_(
- debug_info->DebugBytecodeArray()->source_position_table()) {
+ debug_info->DebugBytecodeArray()->SourcePositionTable()) {
// There is at least one break location.
DCHECK(!Done());
Next();
« src/api.cc ('K') | « src/compiler/types.cc ('k') | src/deoptimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698