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

Unified Diff: src/isolate.h

Issue 2882973002: [coverage] Block coverage with support for IfStatements (Closed)
Patch Set: Remove coverage infos 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 1296a20b01e7e2171e74680fd01da1f9ac718bfe..e561f3474c6856ebbba0d6cbbf62164e99db230a 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -1017,6 +1017,10 @@ class Isolate {
return code_coverage_mode() == debug::Coverage::kPreciseBinary;
}
+ bool is_block_count_code_coverage() const {
+ return code_coverage_mode() == debug::Coverage::kBlockCount;
+ }
+
void SetCodeCoverageList(Object* value);
double time_millis_since_init() {

Powered by Google App Engine
This is Rietveld 408576698