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

Unified Diff: src/isolate.h

Issue 2882973002: [coverage] Block coverage with support for IfStatements (Closed)
Patch Set: Comment nit Created 3 years, 7 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
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index dedb38d8b7163f2edcc60df58d1e884da73329c4..b410053b2e594f1f64d4e1f402ac2eaeb8eaea84 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1015,6 +1015,10 @@ class Isolate {
return code_coverage_mode() == debug::Coverage::kPreciseBinary;
}
+ bool is_block_binary_code_coverage() const {
+ return code_coverage_mode() == debug::Coverage::kBlockBinary;
+ }
+
void SetCodeCoverageList(Object* value);
double time_millis_since_init() {

Powered by Google App Engine
This is Rietveld 408576698