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

Unified Diff: test/cctest/interpreter/source-position-matcher.cc

Issue 2451853002: Uniform and precise source positions for inlining (Closed)
Patch Set: fixed gcmole issue Created 4 years, 1 month 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
Index: test/cctest/interpreter/source-position-matcher.cc
diff --git a/test/cctest/interpreter/source-position-matcher.cc b/test/cctest/interpreter/source-position-matcher.cc
index 30d545abc3bb6a4ecf56fd709b3a48a51c013c94..082ac01ef334db77dbf741c2eb3d240915a0acf4 100644
--- a/test/cctest/interpreter/source-position-matcher.cc
+++ b/test/cctest/interpreter/source-position-matcher.cc
@@ -213,7 +213,8 @@ void SourcePositionMatcher::MoveToNextStatement(
if (iterator->is_statement()) {
break;
}
- positions->push_back({iterator->code_offset(), iterator->source_position(),
+ positions->push_back({iterator->code_offset(),
+ iterator->source_position().raw(),
iterator->is_statement()});
iterator->Advance();
}

Powered by Google App Engine
This is Rietveld 408576698